Details
-
Bug
-
Resolution: Cannot Reproduce
-
P1: Critical
-
5.1.0
-
Mac OS X 10.8, Qt 5.1 / qtbase 8c81b282f8e18897257b93cb3fc149d74441c40e
Description
Just creating and showing a QDialog with a label in it shows a weird window. See screenshot.
Regression in Qt 5.1, works in Qt 5.0.2
#include <QApplication> #include <QDialog> #include <QHBoxLayout> #include <QLabel> int main(int argc, char *argv[]) { QApplication a(argc, argv); QDialog w; QHBoxLayout *layout = new QHBoxLayout(&w); layout->addWidget(new QLabel("FOOOOO")); w.show(); return a.exec(); }
Attachments
Issue Links
- is required for
-
QTBUG-31105 Qt 5.1 RC1 release tasks
- Closed