diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-16 00:41:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-16 00:41:59 +0100 |
| commit | 76af59ee5e3f4f30cddde8d98e8cddc6aaf16a87 (patch) | |
| tree | d20ccf28a2680b97386525c6a21cb3ec79b42b8e /editor/plugins/shader_editor_plugin.cpp | |
| parent | f73f10dd7e250576d015987830d2718adbbdbcdc (diff) | |
| parent | db020f3cead0c9632fc80290298cee8a9eab3182 (diff) | |
| download | redot-engine-76af59ee5e3f4f30cddde8d98e8cddc6aaf16a87.tar.gz | |
Merge pull request #14649 from MattUV/fix-indentation
Modifies text indentation behaviour
Diffstat (limited to 'editor/plugins/shader_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/shader_editor_plugin.cpp | 34 |
1 files changed, 2 insertions, 32 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index bd6efee2db..3e00776dfd 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -379,26 +379,7 @@ void ShaderEditor::_menu_option(int p_option) { if (shader.is_null()) return; - tx->begin_complex_operation(); - if (tx->is_selection_active()) { - tx->indent_selection_left(); - } else { - int begin = tx->cursor_get_line(); - String line_text = tx->get_line(begin); - // begins with tab - if (line_text.begins_with("\t")) { - line_text = line_text.substr(1, line_text.length()); - tx->set_line(begin, line_text); - } - // begins with 4 spaces - else if (line_text.begins_with(" ")) { - line_text = line_text.substr(4, line_text.length()); - tx->set_line(begin, line_text); - } - } - tx->end_complex_operation(); - tx->update(); - //tx->deselect(); + tx->indent_left(); } break; case EDIT_INDENT_RIGHT: { @@ -407,18 +388,7 @@ void ShaderEditor::_menu_option(int p_option) { if (shader.is_null()) return; - tx->begin_complex_operation(); - if (tx->is_selection_active()) { - tx->indent_selection_right(); - } else { - int begin = tx->cursor_get_line(); - String line_text = tx->get_line(begin); - line_text = '\t' + line_text; - tx->set_line(begin, line_text); - } - tx->end_complex_operation(); - tx->update(); - //tx->deselect(); + tx->indent_right(); } break; case EDIT_DELETE_LINE: { |
