Add missing buffer update after pasting unformatted text.

Fixes bug #8735.
This commit is contained in:
Richard Heck 2016-06-29 13:32:30 -04:00
parent 499fc04c9a
commit 6ecb05e6ea

View File

@ -1168,6 +1168,7 @@ bool pasteClipboardText(Cursor & cur, ErrorList & errorList, bool asParagraphs,
cur.text()->insertStringAsParagraphs(cur, text, cur.current_font);
else
cur.text()->insertStringAsLines(cur, text, cur.current_font);
cur.forceBufferUpdate();
return true;
}