Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.9.0
-
None
Description
op//代码占位符 #include "mainwindow.h"#include <QApplication> #include <QQuickStyle> #include <QQuickWidget>int main(int argc, char *argv[]) { QApplication a(argc, argv); QQuickStyle::setStyle("Material"); QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGL); MainWindow w; w.show(); return a.exec(); }
If I force set the graphicApi to OpenGL, the QQuickWidget background will be pure black for a Qt::Popup widget
The same code works well in Qt 6.8.*, but not work with 6.9.0
Qt 6.8.3
6.9.0
Reproducible source code attached.