diff options
| author | Max Hilbrunner | 2018-05-07 14:49:23 +0200 |
|---|---|---|
| committer | GitHub | 2018-05-07 14:49:23 +0200 |
| commit | c587cac304fd580342141fe3ed5899377d9759fd (patch) | |
| tree | a105783ceadc265b2d168f10e4963a72b8fe15f3 /editor/plugins/script_text_editor.cpp | |
| parent | 35322c0678edad29927adc7352003f166549a5d3 (diff) | |
| parent | 02b7b916b7efb6685f9f8ea31dcae1407d467462 (diff) | |
| download | godot-c587cac304fd580342141fe3ed5899377d9759fd.tar.gz godot-c587cac304fd580342141fe3ed5899377d9759fd.tar.zst godot-c587cac304fd580342141fe3ed5899377d9759fd.zip | |
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
| -rw-r--r-- | editor/plugins/script_text_editor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index c872a6f28..0114dfc63 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -1007,6 +1007,10 @@ void ScriptTextEditor::_edit_option(int p_op) { } int next_line = to_line + 1; + if (to_line >= tx->get_line_count() - 1) { + tx->set_line(to_line, tx->get_line(to_line) + "\n"); + } + tx->begin_complex_operation(); for (int i = from_line; i <= to_line; i++) { |
