From 7e65a87ba85c19e040ac96e2e1712e7fc5e8e156 Mon Sep 17 00:00:00 2001 From: SpomJ <75751809+SpomJ@users.noreply.github.com> Date: Wed, 20 Nov 2024 22:08:27 +0300 Subject: [PATCH] Fix unrestricted splash screen geometry (#7588) --- src/gui/GuiApplication.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/GuiApplication.cpp b/src/gui/GuiApplication.cpp index 5c4bdd19a..31b989a92 100644 --- a/src/gui/GuiApplication.cpp +++ b/src/gui/GuiApplication.cpp @@ -106,6 +106,7 @@ GuiApplication::GuiApplication() // Show splash screen QSplashScreen splashScreen( embed::getIconPixmap( "splash" ) ); + splashScreen.setFixedSize(splashScreen.pixmap().size()); splashScreen.show(); QHBoxLayout layout;