From: Richard Heck Date: Fri, 8 Mar 2013 23:09:28 +0000 (-0500) Subject: Don't try to show the status message if we are busy. X-Git-Tag: 2.0.7~117 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e3875398c7a564cd08cee968a6b494dcb5cfcd2b;p=features.git Don't try to show the status message if we are busy. Intended to fix #8523. (cherry picked from commit 6dac777dbc67d8be9ffff098d40560ab638a8923) --- diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 42716192a7..3514bfbb2c 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -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(); diff --git a/status.20x b/status.20x index d0dc2dcce8..a4375021e4 100644 --- a/status.20x +++ b/status.20x @@ -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