I am basically trying here to get rid of random calls to

processUpdateFlags. This one is easy.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35650 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-10-14 14:47:33 +00:00
parent 97b82d285d
commit 3af1fa5abb
2 changed files with 1 additions and 1 deletions

View File

@ -1942,6 +1942,7 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
if (!cmd.argument().empty())
// FIXME: Are all these characters encoded in one byte in utf8?
bv->translateAndInsert(cmd.argument()[0], this, cur);
cur.screenUpdateFlags(Update::FitCursor);
break;
case LFUN_FLOAT_LIST_INSERT: {

View File

@ -1685,7 +1685,6 @@ void GuiApplication::handleKeyFunc(FuncCode action)
d->keyseq.clear();
// copied verbatim from do_accent_char
bv->cursor().resetAnchor();
bv->processUpdateFlags(Update::FitCursor);
}