diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-01-18 09:51:11 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-01-18 09:51:11 -0300 |
commit | 6f3c09047ecea651a219c36dd9fa9f96b5f06be4 (patch) | |
tree | ceca1f8e62a253addd66cc7388bbbbc591913e30 /tools | |
parent | 91faf8e21810c8995e4f6e3b6ba47a6482ab877e (diff) |
-intentional breakage of shader graph to fix issues, existing graphs will be broken, sorry :(
Diffstat (limited to 'tools')
-rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 2 |
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 d90597ddfb..4b7d1cf0e0 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 |