From 6dac777dbc67d8be9ffff098d40560ab638a8923 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. --- src/frontends/qt4/GuiView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index bb8da339d4..5983aa199d 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -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(); -- 2.39.2