1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix BaseButton not emitting signal with virtual function

Fix #29258
This commit is contained in:
volzhs
2019-05-29 06:28:34 +09:00
parent 80f7a19569
commit 5c01e066e1
2 changed files with 16 additions and 6 deletions

View File

@@ -71,6 +71,8 @@ private:
Ref<ButtonGroup> button_group;
void _unpress_group();
void _pressed();
void _toggled(bool p_pressed);
protected:
virtual void pressed();