diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-01 09:43:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 09:43:02 +0200 |
commit | 801548fb70b4ef079237929bba0a34b948317504 (patch) | |
tree | 55ccd2bf64f2db90d2720c1a487599024dcc7d98 /editor/code_editor.cpp | |
parent | 3f12d0a8834341d3fdb3361a50b162f46f26f19e (diff) | |
parent | d41f4aca774fbd32b8fdae81213fa8f2e5719fa9 (diff) |
Merge pull request #49994 from akien-mga/script-duplicate-selection
Script editor: Rename 'Clone Down' to 'Duplicate Selection'
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 3e4f382383..03914bec3b 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -738,8 +738,8 @@ void CodeTextEditor::_input(const Ref<InputEvent> &event) { accept_event(); return; } - if (ED_IS_SHORTCUT("script_text_editor/clone_down", key_event)) { - clone_lines_down(); + if (ED_IS_SHORTCUT("script_text_editor/duplicate_selection", key_event)) { + duplicate_selection(); accept_event(); return; } @@ -1287,7 +1287,7 @@ void CodeTextEditor::delete_lines() { text_editor->end_complex_operation(); } -void CodeTextEditor::clone_lines_down() { +void CodeTextEditor::duplicate_selection() { const int cursor_column = text_editor->cursor_get_column(); int from_line = text_editor->cursor_get_line(); int to_line = text_editor->cursor_get_line(); |