]> git.lyx.org Git - features.git/commitdiff
Don't try to show the status message if we are busy.
authorRichard Heck <rgheck@lyx.org>
Fri, 8 Mar 2013 23:09:28 +0000 (18:09 -0500)
committerRichard Heck <rgheck@lyx.org>
Mon, 18 Mar 2013 23:49:33 +0000 (19:49 -0400)
Intended to fix #8523.

src/frontends/qt4/GuiView.cpp

index bb8da339d45400cd56726ea2c491609f958ed3af..5983aa199d9e1b35b4daf4a419df008af1ab984c 100644 (file)
@@ -1064,6 +1064,8 @@ void GuiView::updateStatusBar()
 
 void GuiView::showMessage()
 {
+       if (busy_)
+               return;
        QString msg = toqstr(theGuiApp()->viewStatusMessage());
        if (msg.isEmpty()) {
                BufferView const * bv = currentBufferView();