diff options
author | VolTer <mew.pur.pur@abv.bg> | 2023-02-19 21:08:04 +0100 |
---|---|---|
committer | VolTer <mew.pur.pur@abv.bg> | 2023-02-19 21:08:04 +0100 |
commit | 9de731a9ec5ede1ec401c0acde902772ab700008 (patch) | |
tree | 7e8e8b9d8e66beceac4275953b8270763d4d3058 /scene/gui | |
parent | 29f670b7ab28d6393b0a61d6860decc69c2dc1ec (diff) |
Fix Indent/Unindent without a selection not causing a redraw
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/code_edit.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/code_edit.cpp b/scene/gui/code_edit.cpp index e2f7ec860c..ee39327d4d 100644 --- a/scene/gui/code_edit.cpp +++ b/scene/gui/code_edit.cpp @@ -896,6 +896,7 @@ void CodeEdit::indent_lines() { set_caret_column(get_caret_column(c) + selection_offset, false, c); } end_complex_operation(); + queue_redraw(); } void CodeEdit::unindent_lines() { @@ -973,6 +974,7 @@ void CodeEdit::unindent_lines() { set_caret_column(initial_cursor_column - removed_characters, false, c); } end_complex_operation(); + queue_redraw(); } int CodeEdit::_calculate_spaces_till_next_left_indent(int p_column) const { |