Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.5.1
-
None
Description
QWIDGETSIZE_MAX = 16777215 (0xFFFFFF)
Reproducible on Windows with the following code:
#include <QtGui>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QWidget widget;
widget.setMaximumSize(3000, 3000);
widget.show();
return app.exec();
}