Fix undo/redo following scroll work.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22314 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-12-26 14:00:55 +00:00
parent 33eb188fb6
commit e1033d4ad6

View File

@ -923,6 +923,7 @@ bool BufferView::dispatch(FuncRequest const & cmd)
cur.clearSelection();
if (!cur.textUndo())
cur.message(_("No further undo information"));
showCursor();
break;
case LFUN_REDO:
@ -930,6 +931,7 @@ bool BufferView::dispatch(FuncRequest const & cmd)
cur.clearSelection();
if (!cur.textRedo())
cur.message(_("No further redo information"));
showCursor();
break;
case LFUN_FONT_STATE: