7097: EditNote hangs initially on misspelled note

Disable undo during the initial note text population,
so as to avoid bombardment with gtkspell-... tags for the
misspelled text.
This commit is contained in:
Vassilii Khachaturov 2014-02-25 15:38:23 +02:00
parent 84d5b6156f
commit 8dd6d92184

View File

@ -269,6 +269,7 @@ class EditNote(EditPrimary):
# setup initial values for textview and textbuffer
if self.obj:
self.empty = False
with self.texteditor.undo_disabled():
self.texteditor.set_text(self.obj.get_styledtext())
# Reset the undoable buffer:
self.texteditor.reset()