diff options
author | kobewi <kobewi4e@gmail.com> | 2024-05-23 17:10:55 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-05-25 10:51:37 +0200 |
commit | b365a634038d4a60f31b22b58be5e4667a8663dc (patch) | |
tree | a833657fb3e6b4a9463c6d40c0ae59b2c9dc5601 /scene/gui/option_button.h | |
parent | b7feebefabc2d48b0d4794cd31fc141f1caecc5c (diff) | |
download | redot-engine-b365a634038d4a60f31b22b58be5e4667a8663dc.tar.gz |
Automatically use property count in PropertyListHelper
Diffstat (limited to 'scene/gui/option_button.h')
-rw-r--r-- | scene/gui/option_button.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/option_button.h b/scene/gui/option_button.h index 4b5164161a..351df9a749 100644 --- a/scene/gui/option_button.h +++ b/scene/gui/option_button.h @@ -84,7 +84,7 @@ protected: void _notification(int p_what); bool _set(const StringName &p_name, const Variant &p_value); bool _get(const StringName &p_name, Variant &r_ret) const { return property_helper.property_get_value(p_name, r_ret); } - void _get_property_list(List<PropertyInfo> *p_list) const { property_helper.get_property_list(p_list, popup->get_item_count()); } + void _get_property_list(List<PropertyInfo> *p_list) const { property_helper.get_property_list(p_list); } bool _property_can_revert(const StringName &p_name) const { return property_helper.property_can_revert(p_name); } bool _property_get_revert(const StringName &p_name, Variant &r_property) const { return property_helper.property_get_revert(p_name, r_property); } void _validate_property(PropertyInfo &p_property) const; |