summaryrefslogtreecommitdiffstats
path: root/editor/plugins/script_text_editor.cpp
diff options
context:
space:
mode:
authordankan1890 <mewuidev2@gmail.com>2019-05-15 14:27:24 +0200
committerdankan1890 <mewuidev2@gmail.com>2019-05-15 14:27:24 +0200
commit81e48e2cf3fd788bfea7085544f121c15c5f24ca (patch)
tree08c6562fc433a7b0ffea3007088e7302f158afd1 /editor/plugins/script_text_editor.cpp
parent996abb83e31453b4dcd3f4031a191aba3b392bef (diff)
downloadredot-engine-81e48e2cf3fd788bfea7085544f121c15c5f24ca.tar.gz
ScriptEditor: Changed the shortcut for contextual help in ALT + F1, to resolve the conflict with the help menu opening shortcut.
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
-rw-r--r--editor/plugins/script_text_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp
index d40e67cc8c..ee55af2d77 100644
--- a/editor/plugins/script_text_editor.cpp
+++ b/editor/plugins/script_text_editor.cpp
@@ -1739,7 +1739,7 @@ void ScriptTextEditor::register_editor() {
#ifdef OSX_ENABLED
ED_SHORTCUT("script_text_editor/contextual_help", TTR("Contextual Help"), KEY_MASK_ALT | KEY_MASK_SHIFT | KEY_SPACE);
#else
- ED_SHORTCUT("script_text_editor/contextual_help", TTR("Contextual Help"), KEY_MASK_SHIFT | KEY_F1);
+ ED_SHORTCUT("script_text_editor/contextual_help", TTR("Contextual Help"), KEY_MASK_ALT | KEY_F1);
#endif
ScriptEditor::register_create_script_editor_function(create_editor);