diff options
author | MewPurPur <mew.pur.pur@abv.bg> | 2023-07-05 16:54:40 +0200 |
---|---|---|
committer | MewPurPur <mew.pur.pur@abv.bg> | 2023-07-05 18:38:18 +0200 |
commit | 3d128f67a4c006d610b449a224b47479fc45d324 (patch) | |
tree | 6c65bde24b95d353b3ab023d9906c8f8b1150939 /scene/gui/base_button.cpp | |
parent | c83f912bcb33d441b90afe36bad38880acbe5f15 (diff) | |
download | redot-engine-3d128f67a4c006d610b449a224b47479fc45d324.tar.gz |
Rename button_pressed bindings to avoid shadowing
Diffstat (limited to 'scene/gui/base_button.cpp')
-rw-r--r-- | scene/gui/base_button.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/base_button.cpp b/scene/gui/base_button.cpp index 3ac3ca7363..f57afb66b3 100644 --- a/scene/gui/base_button.cpp +++ b/scene/gui/base_button.cpp @@ -468,12 +468,12 @@ void BaseButton::_bind_methods() { ClassDB::bind_method(D_METHOD("get_button_group"), &BaseButton::get_button_group); GDVIRTUAL_BIND(_pressed); - GDVIRTUAL_BIND(_toggled, "button_pressed"); + GDVIRTUAL_BIND(_toggled, "toggled_on"); ADD_SIGNAL(MethodInfo("pressed")); ADD_SIGNAL(MethodInfo("button_up")); ADD_SIGNAL(MethodInfo("button_down")); - ADD_SIGNAL(MethodInfo("toggled", PropertyInfo(Variant::BOOL, "button_pressed"))); + ADD_SIGNAL(MethodInfo("toggled", PropertyInfo(Variant::BOOL, "toggled_on"))); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "disabled"), "set_disabled", "is_disabled"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "toggle_mode"), "set_toggle_mode", "is_toggle_mode"); |