diff options
author | kilojool <hoglund.joel@gmail.com> | 2023-01-25 11:39:09 +0100 |
---|---|---|
committer | kilojool <hoglund.joel@gmail.com> | 2023-01-25 15:11:48 +0100 |
commit | 8b008757db4f84293f123d3a47978b8d799d714f (patch) | |
tree | 3219b32346324bbdf6571b5ab57eca7eba183cde /scene/gui/option_button.h | |
parent | 4368191a9f9c6290805dd4094c36379776128338 (diff) | |
download | redot-engine-8b008757db4f84293f123d3a47978b8d799d714f.tar.gz |
OptionButton: allow reselection of selected item
Diffstat (limited to 'scene/gui/option_button.h')
-rw-r--r-- | scene/gui/option_button.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/gui/option_button.h b/scene/gui/option_button.h index d8e2f3209d..b741ebeedd 100644 --- a/scene/gui/option_button.h +++ b/scene/gui/option_button.h @@ -42,6 +42,7 @@ class OptionButton : public Button { bool fit_to_longest_item = true; Vector2 _cached_size; bool cache_refresh_pending = false; + bool allow_reselect = false; struct ThemeCache { Ref<StyleBox> normal; @@ -111,6 +112,9 @@ public: void set_fit_to_longest_item(bool p_fit); bool is_fit_to_longest_item() const; + void set_allow_reselect(bool p_allow); + bool get_allow_reselect() const; + void add_separator(const String &p_text = ""); void clear(); |