Don't try to show the status message if we are busy.

Intended to fix #8523.
This commit is contained in:
Richard Heck 2013-03-08 18:09:28 -05:00
parent fbe9e96b5e
commit 6dac777dbc

View 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();