diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-13 10:59:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-13 10:59:00 +0200 |
| commit | 1a16dabfb52a5f3e82afa22ee827d8ed8f17511e (patch) | |
| tree | d99eddbfc533a6ce37fde09d31f656ff31887dcb /editor/plugins/script_text_editor.cpp | |
| parent | 9c0cc0db63f61cd71a2a735519dc7816973e5b7e (diff) | |
| parent | 08bde5b2dea65ef3f80af5de4f4caf0e76982b64 (diff) | |
| download | redot-engine-1a16dabfb52a5f3e82afa22ee827d8ed8f17511e.tar.gz | |
Merge pull request #21982 from luzpaz/misc-typos
Misc. typos
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
| -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 82c2e07940..cbb2213128 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -1256,7 +1256,7 @@ void ScriptTextEditor::_text_edit_gui_input(const Ref<InputEvent> &ev) { int to_column = tx->get_selection_to_column(); if (row < from_line || row > to_line || (row == from_line && col < from_column) || (row == to_line && col > to_column)) { - // Right click is outside the seleted text + // Right click is outside the selected text tx->deselect(); } } |
