Merge pull request #29838 from KoBeWi/4real

Fix selection undo... for real
This commit is contained in:
Rémi Verschelde 2019-06-17 11:07:26 +02:00 committed by GitHub
commit 2935caa13f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5613,7 +5613,7 @@ void TextEdit::undo() {
TextOperation op = undo_stack_pos->get();
_do_text_op(op, true);
if (op.from_line != op.to_line || op.to_column != op.from_column + 1)
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;