Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.5.0
-
None
Description
With following code, the dialog may randomly not show up. Here run it 4~5 times and it will be possible to reproduce the issue.
#include <QApplication> #include <QDialog> int main(int argc, char* argv[]) { QApplication app(argc, argv); QDialog a; a.show(); a.hide(); a.exec(); return app.exec(); }