mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 04:33:29 +00:00
Fix Indent/Unindent without a selection not causing a redraw
This commit is contained in:
parent
29f670b7ab
commit
9de731a9ec
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user