Details
-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
5.1.1
-
None
-
windows
Description
replace the main.cpp with :
int main(int argc, char *argv[]) { QApplication app(argc, argv); Window window; window.setWindowFlags(Qt::FramelessWindowHint | Qt::Dialog); window.setAttribute(Qt::WA_TranslucentBackground); window.show(); return app.exec(); }
Observe how window on the right side is not drawn anymore.
This works on linux (linux implementation depends on the following patch https://codereview.qt-project.org/#change,70361).
Attachments
Issue Links
- relates to
-
QTBUG-28214 Cannot make transparent (translucent) background for QQuickView
- Closed