]> 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>
Tue, 7 May 2013 15:32:04 +0000 (11:32 -0400)
Intended to fix #8523.
(cherry picked from commit 6dac777dbc67d8be9ffff098d40560ab638a8923)

src/frontends/qt4/GuiView.cpp
status.20x

index 42716192a792c1da6fb84ad8cb90d4dc100d681d..3514bfbb2c027bd2e8cfca80dfd82f52558ce3a8 100644 (file)
@@ -1061,6 +1061,8 @@ void GuiView::updateStatusBar()
 
 void GuiView::showMessage()
 {
+       if (busy_)
+               return;
        QString msg = toqstr(theGuiApp()->viewStatusMessage());
        if (msg.isEmpty()) {
                BufferView const * bv = currentBufferView();
index d0dc2dcce81a0490125e460db852cd342e57af4f..a4375021e4e784d685b357f7b85d3c4b55020f89 100644 (file)
@@ -55,6 +55,7 @@ What's new
 
 * USER INTERFACE
 
+- Fix crash when saving document with module that is not present (bug 8523).
 
 
 * DOCUMENTATION AND LOCALIZATION