Merge pull request #59897 from timothyqiu/undo-select

Consider chained operation when selecting text in `TextEdit::undo()`
This commit is contained in:
Rémi Verschelde 2022-04-05 08:26:15 +02:00 committed by GitHub
commit 479143ab2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -3486,9 +3486,6 @@ void TextEdit::undo() {
TextOperation op = undo_stack_pos->get();
_do_text_op(op, true);
if (op.type != TextOperation::TYPE_INSERT && (op.from_line != op.to_line || op.to_column != op.from_column + 1)) {
select(op.from_line, op.from_column, op.to_line, op.to_column);
}
current_op.version = op.prev_version;
if (undo_stack_pos->get().chain_backward) {
@ -3504,6 +3501,10 @@ void TextEdit::undo() {
}
}
if (op.type != TextOperation::TYPE_INSERT && (op.from_line != op.to_line || op.to_column != op.from_column + 1)) {
select(op.from_line, op.from_column, op.to_line, op.to_column);
}
_update_scrollbars();
if (undo_stack_pos->get().type == TextOperation::TYPE_REMOVE) {
set_caret_line(undo_stack_pos->get().to_line, false);