Fixed undoing twice when removing selection

This commit is contained in:
Paulb23 2016-04-05 13:52:18 +01:00
parent 9c89d3e042
commit 15f43149e1

View file

@ -1747,6 +1747,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
}
if (clear) {
_begin_compex_operation();
selection.active=false;
update();
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
@ -2417,6 +2418,10 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
if (insert_mode && !had_selection) {
_end_compex_operation();
}
if (selection.active != had_selection) {
_end_compex_operation();
}
accept_event();
} else {