diff options
author | Bitlytic <bitanalytical@gmail.com> | 2022-03-24 19:23:55 -0500 |
---|---|---|
committer | Bitlytic <bitanalytical@gmail.com> | 2022-03-24 19:23:55 -0500 |
commit | 8ae5c75bf7d52010c0c89d567e04910290a07f3e (patch) | |
tree | 1cb6b899c5f1bc67b329f3922878592fd2d57cec | |
parent | 391633760b0ea292af079287faf79c1aee6d9254 (diff) |
Add _group_selected to callable methods
-rw-r--r-- | editor/groups_editor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/groups_editor.cpp b/editor/groups_editor.cpp index 4b3a7a8313..37d535aed2 100644 --- a/editor/groups_editor.cpp +++ b/editor/groups_editor.cpp @@ -416,6 +416,8 @@ void GroupDialog::_bind_methods() { ClassDB::bind_method("_rename_group_item", &GroupDialog::_rename_group_item); + ClassDB::bind_method("_group_selected", &GroupDialog::_group_selected); + ADD_SIGNAL(MethodInfo("group_edited")); } |