]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.cpp
SConstruct: don't build anymore TOC.lyx files
[lyx.git] / src / BufferView.cpp
index cea5b723c6d890a1c0e60e68bc9f1ec7bd906b31..02d8fcdc98339f68903a4c0c9fe1451506f3b759 100644 (file)
@@ -1154,11 +1154,15 @@ bool BufferView::dispatch(FuncRequest const & cmd)
 
        case LFUN_CHANGE_NEXT:
                findNextChange(this);
+               // FIXME: Move this LFUN to Buffer so that we don't have to do this:
+               processUpdateFlags(Update::Force | Update::FitCursor);
                break;
 
        case LFUN_CHANGES_MERGE:
-               if (findNextChange(this))
+               if (findNextChange(this)) {
+                       processUpdateFlags(Update::Force | Update::FitCursor);
                        showDialog("changes");
+               }
                break;
 
        case LFUN_ALL_CHANGES_ACCEPT: