From 6aeaa2b5b8b81ef0794b47bf288c79370fd8418e Mon Sep 17 00:00:00 2001 From: SimplestStudio Date: Wed, 30 Oct 2024 12:29:49 +0200 Subject: [PATCH] [linux] fix bug 69571 --- win-linux/src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win-linux/src/utils.cpp b/win-linux/src/utils.cpp index 6245ef6f0..1d232641e 100644 --- a/win-linux/src/utils.cpp +++ b/win-linux/src/utils.cpp @@ -1104,7 +1104,6 @@ namespace WindowHelper { CFullScrWidget * _parent = new CFullScrWidget; _parent->setWindowIcon(Utils::appIcon()); _parent->setWindowTitle(_panel->data()->title()); - _parent->showFullScreen(); QRect _scr_geometry; #if QT_VERSION < QT_VERSION_CHECK(5, 11, 0) @@ -1131,6 +1130,7 @@ namespace WindowHelper { #endif _parent->setGeometry(_scr_geometry); + _parent->showFullScreen(); _panel->setParent(_parent); _panel->show();