mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-24 17:09:41 +00:00
Don't try to show the status message if we are busy.
Intended to fix #8523. (cherry picked from commit 6dac777dbc67d8be9ffff098d40560ab638a8923)
This commit is contained in:
parent
da52958a3e
commit
e3875398c7
@ -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();
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user