Fix BaseButton not always calling _pressed()
Fix "ui_accept" action in BaseButton.cpp not calling _pressed() func in GDScript
This commit is contained in:
parent
91ed678708
commit
ceb079fa35
|
@ -211,6 +211,11 @@ void BaseButton::_gui_input(Ref<InputEvent> p_event) {
|
||||||
if (!toggle_mode) { //mouse press attempt
|
if (!toggle_mode) { //mouse press attempt
|
||||||
|
|
||||||
pressed();
|
pressed();
|
||||||
|
if (get_script_instance()) {
|
||||||
|
Variant::CallError ce;
|
||||||
|
get_script_instance()->call(SceneStringNames::get_singleton()->_pressed, NULL, 0, ce);
|
||||||
|
}
|
||||||
|
|
||||||
emit_signal("pressed");
|
emit_signal("pressed");
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue