From c2b902af4b968c25cd86fb9e706edcaedb0c9dec Mon Sep 17 00:00:00 2001 From: Emmanuel Barroga Date: Thu, 5 Sep 2019 22:11:03 -0700 Subject: [PATCH] Fixes OptionButton Not Updating if Current Selection Already Selected When the option button's current selection is updated to a different text/icon, the selected option does not update until you unselect the option and then select it again. --- scene/gui/option_button.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index d1840e43a3..de8df4215d 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -116,10 +116,16 @@ void OptionButton::add_item(const String &p_label, int p_id) { void OptionButton::set_item_text(int p_idx, const String &p_text) { popup->set_item_text(p_idx, p_text); + + if (current == p_idx) + set_text(p_text); } void OptionButton::set_item_icon(int p_idx, const Ref &p_icon) { popup->set_item_icon(p_idx, p_icon); + + if (current == p_idx) + set_icon(p_icon); } void OptionButton::set_item_id(int p_idx, int p_id) {