From: Abdelrazak Younes Date: Wed, 26 Dec 2007 14:00:55 +0000 (+0000) Subject: Fix undo/redo following scroll work. X-Git-Tag: 1.6.10~6795 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e1033d4ad661d3203f3d22f08d855105cc8b0a6f;p=lyx.git Fix undo/redo following scroll work. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22314 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/BufferView.cpp b/src/BufferView.cpp index 3fdb769ed7..96070bfec9 100644 --- a/src/BufferView.cpp +++ b/src/BufferView.cpp @@ -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: