Mercurial > hg > sonic-visualiser
diff main/main.cpp @ 2300:eb7f4579e5cc by-id
Updates throughout for ModelById logic
author | Chris Cannam |
---|---|
date | Thu, 04 Jul 2019 14:32:08 +0100 |
parents | c517286ee999 |
children | a1c14880404b |
line wrap: on
line diff
--- a/main/main.cpp Mon Jun 24 16:58:10 2019 +0100 +++ b/main/main.cpp Thu Jul 04 14:32:08 2019 +0100 @@ -31,7 +31,7 @@ #include <QMetaType> #include <QApplication> -#include <QDesktopWidget> +#include <QScreen> #include <QMessageBox> #include <QTranslator> #include <QLocale> @@ -404,8 +404,8 @@ splash, SLOT(finishSplash(QWidget *))); } - QDesktopWidget *desktop = QApplication::desktop(); - QRect available = desktop->availableGeometry(); + QScreen *screen = QApplication::primaryScreen(); + QRect available = screen->availableGeometry(); int width = (available.width() * 2) / 3; int height = available.height() / 2;