From e3875398c7a564cd08cee968a6b494dcb5cfcd2b Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Fri, 8 Mar 2013 18:09:28 -0500 Subject: [PATCH] Don't try to show the status message if we are busy. Intended to fix #8523. (cherry picked from commit 6dac777dbc67d8be9ffff098d40560ab638a8923) --- src/frontends/qt4/GuiView.cpp | 2 ++ status.20x | 1 + 2 files changed, 3 insertions(+) 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 -- 2.39.5