Selaa lähdekoodia

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.
Emmanuel Barroga 6 vuotta sitten
vanhempi
commit
c2b902af4b
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. 6 0
      scene/gui/option_button.cpp

+ 6 - 0
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<Texture> &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) {