Merge pull request #73597 from MewPurPur/add-missing-queue-redraw--oh-wait-that-barely-narrows-it-down
Fix Indent/Unindent without a selection not causing a redraw
This commit is contained in:
commit
69b99730e0
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue