diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-09-13 12:09:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-13 12:09:17 +0200 |
commit | ae8f984cf37210ebd0667bcaa2e80e947efc4841 (patch) | |
tree | df228eb784e62fb10a59e3f58806290400b8fa88 | |
parent | 6c20c3a5345f6eefdbcbb1288bd874c4f3670a1b (diff) | |
parent | d1d1f4a77655264a9adc974dc5dd01a98ea59e92 (diff) |
Merge pull request #21730 from reisraff/fixing_key_shortcut
#21500 Fixing key shortcut
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index cbb2213128..bdeeaa106d 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -1556,7 +1556,7 @@ void ScriptTextEditor::register_editor() { #endif ED_SHORTCUT("script_text_editor/trim_trailing_whitespace", TTR("Trim Trailing Whitespace"), KEY_MASK_CMD | KEY_MASK_ALT | KEY_T); ED_SHORTCUT("script_text_editor/convert_indent_to_spaces", TTR("Convert Indent To Spaces"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_Y); - ED_SHORTCUT("script_text_editor/convert_indent_to_tabs", TTR("Convert Indent To Tabs"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_X); + ED_SHORTCUT("script_text_editor/convert_indent_to_tabs", TTR("Convert Indent To Tabs"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_I); ED_SHORTCUT("script_text_editor/auto_indent", TTR("Auto Indent"), KEY_MASK_CMD | KEY_I); #ifdef OSX_ENABLED |