mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 22:17:41 +00:00
Do not try even to hide buffers that are being processed by LyX.
Should fix #9711.
This commit is contained in:
parent
394fc5cf15
commit
a5ea77410e
@ -2819,7 +2819,7 @@ bool GuiView::closeWorkArea(GuiWorkArea * wa, bool close_buffer)
|
||||
|
||||
Buffer & buf = wa->bufferView().buffer();
|
||||
|
||||
if (close_buffer && GuiViewPrivate::busyBuffers.contains(&buf)) {
|
||||
if (GuiViewPrivate::busyBuffers.contains(&buf)) {
|
||||
Alert::warning(_("Close document"),
|
||||
_("Document could not be closed because it is being processed by LyX."));
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user