diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-05-08 08:15:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 08:15:59 +0200 |
commit | b8087987723e5299635044b4dedcecb69426c43b (patch) | |
tree | 5b0000750349b1200d715b19417a9b6a79b2ee92 /scene | |
parent | 64cb61619ae76325b2450d9a2570bf6471248450 (diff) | |
parent | 9ee8ddcd8d521e7db3e1e62e27533ad0de44d392 (diff) |
Merge pull request #18700 from GodotExplorer/fix-#18686
Add default paramater value for OptionButton::add_icon_item
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/option_button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index a9402d6404..c5e4149782 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -297,7 +297,7 @@ void OptionButton::_bind_methods() { ClassDB::bind_method(D_METHOD("_focused"), &OptionButton::_focused); ClassDB::bind_method(D_METHOD("add_item", "label", "id"), &OptionButton::add_item, DEFVAL(-1)); - ClassDB::bind_method(D_METHOD("add_icon_item", "texture", "label", "id"), &OptionButton::add_icon_item); + ClassDB::bind_method(D_METHOD("add_icon_item", "texture", "label", "id"), &OptionButton::add_icon_item, DEFVAL(-1)); ClassDB::bind_method(D_METHOD("set_item_text", "idx", "text"), &OptionButton::set_item_text); ClassDB::bind_method(D_METHOD("set_item_icon", "idx", "texture"), &OptionButton::set_item_icon); ClassDB::bind_method(D_METHOD("set_item_disabled", "idx", "disabled"), &OptionButton::set_item_disabled); |