summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d94895a..d2def2c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -192,8 +192,8 @@ static int findConfig(QVector<QRect> &list)
static void dumpScreens()
{
QVector<QRect> list;
- for (auto *scr : QGuiApplication::screens()) {
- list.append(scr->geometry());
+ for (auto scr : ScreenSetup::inst()->getScreenPositions()) {
+ list.append(QRect(scr.location, scr.currentResolution));
}
findConfig(list);
qSort(list.begin(), list.end(), [](const QRect &one, const QRect &other) -> bool {