Do not try even to hide buffers that are being processed by LyX.

Should fix #9711.
This commit is contained in:
Richard Heck 2015-12-12 12:57:33 -05:00
parent 394fc5cf15
commit a5ea77410e

View File

@ -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;