Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.5.1, 5.6, 5.7
-
None
-
5645dc9f8a5264bde855d5b14c619198cfedf3a5
Description
Consider the following example:
#include <QGuiApplication> #include <QWindow> int main(int argc, char *argv[]) { QGuiApplication a(argc, argv); QWindow window; window.show(); window.setFlags(window.flags() | Qt::WindowStaysOnTopHint); return a.exec(); }
One would expect the window to stay on top, but it doesn't
Attachments
Issue Links
- relates to
-
QTBUG-31671 Setting Qt::WindowStaysOnTopHint when window is already shown doesn't work reliable
- Closed