From e7d75267ae918ba42bcf2c512c2b04ca8b04cd18 Mon Sep 17 00:00:00 2001 From: Faraphel Date: Sat, 23 Dec 2023 11:33:58 +0100 Subject: [PATCH] fixed the window being minimised instead of normal --- source/survey/WebMission.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/survey/WebMission.py b/source/survey/WebMission.py index 2238c95..4382268 100644 --- a/source/survey/WebMission.py +++ b/source/survey/WebMission.py @@ -163,7 +163,7 @@ class WebMission(BaseSurvey): def on_hide(self) -> None: # disable full screen mode - self.window().showMinimized() + self.window().showNormal() # stop the checking loop self.timer_check.stop()