aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/script_editor_plugin.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2015-01-18 09:51:11 -0300
committerJuan Linietsky2015-01-18 09:51:11 -0300
commit6f3c09047ecea651a219c36dd9fa9f96b5f06be4 (patch)
treececa1f8e62a253addd66cc7388bbbbc591913e30 /tools/editor/plugins/script_editor_plugin.cpp
parent91faf8e21810c8995e4f6e3b6ba47a6482ab877e (diff)
downloadgodot-6f3c09047ecea651a219c36dd9fa9f96b5f06be4.tar.gz
godot-6f3c09047ecea651a219c36dd9fa9f96b5f06be4.tar.zst
godot-6f3c09047ecea651a219c36dd9fa9f96b5f06be4.zip
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.cpp')
-rw-r--r--tools/editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp
index d90597ddf..4b7d1cf0e 100644
--- a/tools/editor/plugins/script_editor_plugin.cpp
+++ b/tools/editor/plugins/script_editor_plugin.cpp
@@ -1607,7 +1607,7 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) {
edit_menu->get_popup()->add_item("Clone Down",EDIT_CLONE_DOWN,KEY_MASK_CMD|KEY_B);
edit_menu->get_popup()->add_separator();
#ifdef OSX_ENABLED
- edit_menu->get_popup()->add_item("Complete Symbol",EDIT_COMPLETE,KEY_MASK_META|KEY_SPACE);
+ edit_menu->get_popup()->add_item("Complete Symbol",EDIT_COMPLETE,KEY_MASK_CTRL|KEY_SPACE);
#else
edit_menu->get_popup()->add_item("Complete Symbol",EDIT_COMPLETE,KEY_MASK_CMD|KEY_SPACE);
#endif