Position the main window where it belongs

This commit is contained in:
Aaron Rainbolt 2024-01-01 09:20:00 -06:00
parent e9b58b392a
commit ff7f350bb6

View File

@ -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;
}