diff --git a/src/ChangeLog b/src/ChangeLog index cc57be0972..302cd62c17 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-11-17 Alfredo Braunstein + + * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix + cursor position after e.g. inset insert) + 2003-11-16 Alfredo Braunstein * lyxfind.C (replace): adjust to locking removal + some diff --git a/src/lyxfunc.C b/src/lyxfunc.C index e78f61d765..6891eee207 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -1409,7 +1409,7 @@ void LyXFunc::dispatch(FuncRequest const & func, bool verbose) if (view()->available()) { view()->fitCursor(); view()->update(); - + view()->cursor().updatePos(); // if we executed a mutating lfun, mark the buffer as dirty if (!getStatus(func).disabled() && !lyxaction.funcHasFlag(func.action, LyXAction::NoBuffer)