Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
None
-
6.6.1
Description
When setting the color of the window to "transparent" , the window doesn't appear transparent. However, if the Window is resized , the redrawn parts appear transparent.
This behavior is not detected if the color property is set to a different color.
The code below reproduce the issue:
import QtQuick
Window
{ visible: true color: 'transparent' width: 640 height: 480 }