diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 55c94f71d2..a2626a2f0f 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -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); }