Fixed undo redo interaction with find replace

(cherry picked from commit 189b306722)
This commit is contained in:
Paulb23 2016-04-09 01:27:14 +01:00 committed by Rémi Verschelde
parent b5a438413a
commit e367c6cdd8
1 changed files with 2 additions and 1 deletions

View File

@ -148,6 +148,7 @@ void FindReplaceDialog::_replace_skip_callback() {
void FindReplaceDialog::_replace() { void FindReplaceDialog::_replace() {
text_edit->begin_complex_operation();
if (is_replace_all_mode()) { if (is_replace_all_mode()) {
//line as x so it gets priority in comparison, column as y //line as x so it gets priority in comparison, column as y
@ -228,7 +229,7 @@ void FindReplaceDialog::_replace() {
_search(); _search();
} }
text_edit->end_complex_operation();
} }