diff options
author | sersoong <sersoong@gmail.com> | 2017-12-07 16:09:02 +0800 |
---|---|---|
committer | sersoong <sersoong@gmail.com> | 2017-12-07 16:09:02 +0800 |
commit | 94adf247986cd31b41e339948bc354da525749bd (patch) | |
tree | 80f0717241721e95c7c92a707e7d21bfe95dabc2 | |
parent | 9ff17379c24a800dc598bf41a5981fc5d1c54291 (diff) |
Add uppercase and lowercase to rightclickmenu in scripteditor
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 3a443e1bf7..3c5bc7ac33 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -1509,6 +1509,8 @@ void ScriptTextEditor::_make_context_menu(bool p_selection, bool p_color, bool p if (p_selection) { context_menu->add_separator(); + context_menu->add_shortcut(ED_GET_SHORTCUT("script_text_editor/convert_to_uppercase"), EDIT_TO_UPPERCASE); + context_menu->add_shortcut(ED_GET_SHORTCUT("script_text_editor/convert_to_lowercase"), EDIT_TO_LOWERCASE); context_menu->add_shortcut(ED_GET_SHORTCUT("script_text_editor/indent_left"), EDIT_INDENT_LEFT); context_menu->add_shortcut(ED_GET_SHORTCUT("script_text_editor/indent_right"), EDIT_INDENT_RIGHT); context_menu->add_shortcut(ED_GET_SHORTCUT("script_text_editor/toggle_comment"), EDIT_TOGGLE_COMMENT); |