Details
-
Type:
Bug
-
Status: Reported
-
Priority:
P3: Somewhat important
-
Resolution: Unresolved
-
Affects Version/s: 5.5.0
-
Fix Version/s: None
-
Component/s: Widgets: Widgets and Dialogs
-
Labels: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(); }