Merge pull request #29838 from KoBeWi/4real
Fix selection undo... for real
This commit is contained in:
commit
2935caa13f
1 changed files with 1 additions and 1 deletions
|
@ -5613,7 +5613,7 @@ void TextEdit::undo() {
|
||||||
|
|
||||||
TextOperation op = undo_stack_pos->get();
|
TextOperation op = undo_stack_pos->get();
|
||||||
_do_text_op(op, true);
|
_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);
|
select(op.from_line, op.from_column, op.to_line, op.to_column);
|
||||||
|
|
||||||
current_op.version = op.prev_version;
|
current_op.version = op.prev_version;
|
||||||
|
|
Loading…
Reference in a new issue