From d57448bad70a0878ae652cd5a8e2c0f31521381d Mon Sep 17 00:00:00 2001 From: Thibault GEFFROY Date: Thu, 20 Mar 2025 15:23:10 +0100 Subject: [PATCH] Fix weird behavior on demo examples with QQuickWidget and Image Viewer when undocking redocking --- demo/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/demo/main.cpp b/demo/main.cpp index 750c983..63542fa 100644 --- a/demo/main.cpp +++ b/demo/main.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include @@ -35,6 +36,14 @@ void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QS int main(int argc, char *argv[]) { + // https://doc.qt.io/qt-6/qtdatavisualization-known-issues.html + // Use either `qputenv("QSG_RHI_BACKEND", "opengl");` or the following line + QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGL); + + // Disable warnings when attempts are made to convert non-convertible non-native widgets + // to native widgets (such as QQuickWidget) + QApplication::setAttribute(Qt::AA_DontCreateNativeWidgetSiblings); + #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #if QT_VERSION >= 0x050600