-
Bug
-
Resolution: Done
-
P2: Important
-
None
-
6.6.0
Following tiny code reports way different result if compare with Qt5.15
#include <QApplication> #include <QScreen> #include <QDebug>int main(int argc, char *argv[]) { QApplication a(argc, argv); auto const pScreen = a.primaryScreen(); MainWindow w; w.show(); qDebug("Screen resolution is %i %i", pScreen->size().width(), pScreen->size().height()); return a.exec(); }