1
0
mirror of https://git.lyx.org/repos/lyx.git synced 2025-01-04 08:37:52 +00:00

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

Intended to fix .
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();