GUI: primaryScreen -> primaryScreen()

This commit is contained in:
gitlost 2022-06-16 17:27:19 +01:00
parent 15b8024712
commit 18ede09761

View File

@ -216,7 +216,7 @@ MainWindow::MainWindow(QWidget *parent, Qt::WindowFlags fl)
// Standard width 360 too narrow // Standard width 360 too narrow
if (saved_geometry.isNull()) { if (saved_geometry.isNull()) {
// Seems this is necessary on macOS to get a reasonable initial height // Seems this is necessary on macOS to get a reasonable initial height
setMinimumSize(QSize(460, (int) (QApplication::primaryScreen->availableSize().height() * 0.9f))); setMinimumSize(QSize(460, (int) (QApplication::primaryScreen()->availableSize().height() * 0.9f)));
} else { } else {
setMinimumSize(QSize(460, 0)); setMinimumSize(QSize(460, 0));
} }