mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
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:
parent
33eb188fb6
commit
e1033d4ad6
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user