QOpenGLWindow Stacking Order
Unsolved
General and Desktop
-
I have a QOpenGLWindow which I insert into a widget layout. I create a container for this object using QWidget::createWindowContainer:
https://doc.qt.io/qt-5/qwidget.html#createWindowContainer
My goal is to place children QWidgets on top of this window container. I've tried calling raise() to do this, but the OpenGL window always stays on top.
Is there a way to lower the OpenGL window?
Cheers