]> git.lyx.org Git - lyx.git/commitdiff
revert r36721, this was not needed after all... chasing a wrong track.
authorAbdelrazak Younes <younes@lyx.org>
Sat, 4 Dec 2010 23:19:42 +0000 (23:19 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Sat, 4 Dec 2010 23:19:42 +0000 (23:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36729 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiView.cpp

index 55c94f71d26133057331f0575f5e258dc1f4ee32..a2626a2f0ffae77e3e1cd01cdec7978cf69cd2dd 100644 (file)
@@ -3024,10 +3024,6 @@ void GuiView::dispatchToBufferView(FuncRequest const & cmd, DispatchResult & dr)
        BufferView * bv = currentBufferView();
        LASSERT(bv, /**/);
 
-       // Avoid a screen redraw in the middle of a dispatch operation just
-       // because a warning or an error was displayed.
-       setBusy(true);
-
        // Let the current BufferView dispatch its own actions.
        bv->dispatch(cmd, dr);
 
@@ -3077,8 +3073,6 @@ void GuiView::dispatchToBufferView(FuncRequest const & cmd, DispatchResult & dr)
 
                dr = bv->cursor().result();
        }
-
-       setBusy(false);
 }