Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.10.1
-
None
-
Qt 5.10.1 msvc2015_x64, Windows 10 x64
Description
I creating dialog which is borderless and have toolbar button:
#include <QWidget> #include <QApplication> int main(int argc, char*argv[]) { QApplication app(argc, argv); QWidget f1(nullptr, Qt::FramelessWindowHint | Qt::WindowMinimizeButtonHint); f1.show(); return app.exec(); }
When I restore dialog by clicking on toolbar, I see flickering title before expand.
It's most minimal example, I've tried many other combinations of widgets/flags/styling.
Bug was noticed by our customer, so it rather annoying.
Attachments
Issue Links
- relates to
-
QTBUG-55185 Fullscreen QML application flickers if dialog is shown
-
- Reported
-
-
QTBUG-50246 QtQuick flickering on fullscreen when use ComboBox
-
- Closed
-