From adf590209af891568e32be4456e97877c3174cc7 Mon Sep 17 00:00:00 2001 From: Person Date: Sun, 17 Nov 2019 00:25:41 -0800 Subject: [PATCH] --Bug fixes -Properly detect maximization of final render dialog when on linux. --- Source/Fractorium/FinalRenderDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Fractorium/FinalRenderDialog.cpp b/Source/Fractorium/FinalRenderDialog.cpp index b5d2487..145e074 100644 --- a/Source/Fractorium/FinalRenderDialog.cpp +++ b/Source/Fractorium/FinalRenderDialog.cpp @@ -840,7 +840,7 @@ void FractoriumFinalRenderDialog::Pause(bool paused) /// The event void FractoriumFinalRenderDialog::showEvent(QShowEvent* e) { - if (m_Controller.get() && m_Controller->m_Run)//On Linux, this event will be called when the main window minimized/maximized while rendering, so filter it out. + if (m_Controller.get())//On Linux, this event will be called when the main window minimized/maximized, so filter it out if the window and controller have already been created. return; QString firstfile;