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

Intended to fix #8523.
(cherry picked from commit 6dac777dbc)
This commit is contained in:
Richard Heck 2013-03-08 18:09:28 -05:00
parent da52958a3e
commit e3875398c7
2 changed files with 3 additions and 0 deletions

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

View 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