mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Don't try to show the status message if we are busy.
Intended to fix #8523.
This commit is contained in:
parent
fbe9e96b5e
commit
6dac777dbc
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user