From ff7f350bb6a918596ec3e21c444b71d7e201afdc Mon Sep 17 00:00:00 2001 From: Aaron Rainbolt Date: Mon, 1 Jan 2024 09:20:00 -0600 Subject: [PATCH] Position the main window where it belongs --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index a1b5125..50f4baa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -40,6 +40,7 @@ int main(int argc, char *argv[]) for (QScreen *screen : QApplication::screens()) { if (screen == QApplication::primaryScreen()) { w = new InstallerPrompt(); + w->setGeometry(screen->geometry()); w->showFullScreen(); continue; }