Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
None
-
6.2.0 RC
-
Windows 10
Description
Minimum and maximum sizes are ignored in Qt 6.2.0 (tested on beta4 and RC) on Windows. Linux/X11 and macOS are working properly.
Code to reproduce the issue:
#include <QGuiApplication> #include <QRasterWindow> int main(int argc, char *argv[]) { QGuiApplication a(argc, argv); QRasterWindow w; w.setMinimumSize({200, 200}); w.setMaximumSize({400, 400}); w.show(); return a.exec(); }