Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.5.2
-
None
Description
Note: If the window is not maximised, there is no problem
Here is a simple example of this wrong behaviour:
#include <QtWidgets> int main(int argc, char* argv[]){ QApplication* app = new QApplication(argc, argv); QWidget*w=new QWidget(); w->showMaximized(); return app->exec(); }