From c6b08b9077bae31f29338f98b9f477210652d3be Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Mon, 10 May 2010 11:02:45 +0000 Subject: [PATCH] Fix bug #6686: Navigate back does not trigger a repaint git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34391 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiApplication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiApplication.cpp b/src/frontends/qt4/GuiApplication.cpp index 98e9cae8ac..ead359faa7 100644 --- a/src/frontends/qt4/GuiApplication.cpp +++ b/src/frontends/qt4/GuiApplication.cpp @@ -1557,7 +1557,7 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr) case LFUN_BOOKMARK_GOTO: // go to bookmark, open unopened file and switch to buffer if necessary gotoBookmark(convert(to_utf8(cmd.argument())), true, true); - dr.update(Update::FitCursor); + dr.update(Update::Force | Update::FitCursor); break; case LFUN_BOOKMARK_CLEAR: -- 2.39.5