1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-03 16:55:53 +00:00

Fix Indent/Unindent without a selection not causing a redraw

This commit is contained in:
VolTer
2023-02-19 21:08:04 +01:00
parent 29f670b7ab
commit 9de731a9ec

View File

@@ -896,6 +896,7 @@ void CodeEdit::indent_lines() {
set_caret_column(get_caret_column(c) + selection_offset, false, c); set_caret_column(get_caret_column(c) + selection_offset, false, c);
} }
end_complex_operation(); end_complex_operation();
queue_redraw();
} }
void CodeEdit::unindent_lines() { void CodeEdit::unindent_lines() {
@@ -973,6 +974,7 @@ void CodeEdit::unindent_lines() {
set_caret_column(initial_cursor_column - removed_characters, false, c); set_caret_column(initial_cursor_column - removed_characters, false, c);
} }
end_complex_operation(); end_complex_operation();
queue_redraw();
} }
int CodeEdit::_calculate_spaces_till_next_left_indent(int p_column) const { int CodeEdit::_calculate_spaces_till_next_left_indent(int p_column) const {