summaryrefslogtreecommitdiffstats
path: root/editor/groups_editor.h
diff options
context:
space:
mode:
authortrollodel <33117082+trollodel@users.noreply.github.com>2021-09-18 09:33:18 +0200
committertrollodel <33117082+trollodel@users.noreply.github.com>2022-05-21 17:16:52 +0200
commit307427af89d4cbbcf32099f6009739f50c8bd0a0 (patch)
tree73915e75837b66834834b1e124687258f886b05e /editor/groups_editor.h
parent4173a4735eb1690132d30430f88fb7d2681c5727 (diff)
downloadredot-engine-307427af89d4cbbcf32099f6009739f50c8bd0a0.tar.gz
Add the button pressed to some signals in Tree
Diffstat (limited to 'editor/groups_editor.h')
-rw-r--r--editor/groups_editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/groups_editor.h b/editor/groups_editor.h
index b6a6204013..75cbfd01a4 100644
--- a/editor/groups_editor.h
+++ b/editor/groups_editor.h
@@ -84,7 +84,7 @@ class GroupDialog : public AcceptDialog {
void _rename_group_item(const String &p_old_name, const String &p_new_name);
void _add_group(String p_name);
- void _modify_group_pressed(Object *p_item, int p_column, int p_id);
+ void _modify_group_pressed(Object *p_item, int p_column, int p_id, MouseButton p_button);
void _delete_group_item(const String &p_name);
bool _can_edit(Node *p_node, String p_group);
@@ -123,7 +123,7 @@ class GroupsEditor : public VBoxContainer {
void update_tree();
void _add_group(const String &p_group = "");
- void _modify_group(Object *p_item, int p_column, int p_id);
+ void _modify_group(Object *p_item, int p_column, int p_id, MouseButton p_button);
void _group_name_changed(const String &p_new_text);
void _show_group_dialog();