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
if (saved_geometry.isNull()) {
// 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 {
setMinimumSize(QSize(460, 0));
}