diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-07 13:58:28 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-07 14:24:06 +0100 |
commit | fcc2648e18f0b6bcfd2b4e70829078346dc74b36 (patch) | |
tree | 51589af6766405604a1fd2abe6cfe465fa918b2b /scene/gui/option_button.cpp | |
parent | 50225a0f32bbf37469affb0a0797fae76ff8fdac (diff) | |
download | redot-engine-fcc2648e18f0b6bcfd2b4e70829078346dc74b36.tar.gz |
Fix missing arg name in bindings for GDExtension API
Diffstat (limited to 'scene/gui/option_button.cpp')
-rw-r--r-- | scene/gui/option_button.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index e721b01cbc..e955fde43a 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -359,8 +359,9 @@ void OptionButton::_bind_methods() { ClassDB::bind_method(D_METHOD("get_popup"), &OptionButton::get_popup); - ClassDB::bind_method(D_METHOD("set_item_count"), &OptionButton::set_item_count); + ClassDB::bind_method(D_METHOD("set_item_count", "count"), &OptionButton::set_item_count); ClassDB::bind_method(D_METHOD("get_item_count"), &OptionButton::get_item_count); + // "selected" property must come after "item_count", otherwise GH-10213 occurs. ADD_ARRAY_COUNT("Items", "item_count", "set_item_count", "get_item_count", "popup/item_"); ADD_PROPERTY(PropertyInfo(Variant::INT, "selected"), "_select_int", "get_selected"); |