Details
-
Bug
-
Resolution: Done
-
P2: Important
-
None
-
5.15.14, 6.2.9, 6.5.2
-
macOS Ventura 13.4.1, Xcode 14.3
Description
Code
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 300 height: 300 visible: true color: "transparent" flags: Qt.FramelessWindowHint // | Qt.NoDropShadowWindowHint // WORKAROUND Rectangle { id: rectangle width: 100 height: 100 color: "green" NumberAnimation on x { to: 200; duration: 2000 } NumberAnimation on y { to: 200; duration: 2000 } } }
Outcome
As the Rectangle moves, an outline remains at its initial position:
Workaround
Apply Qt.NoDropShadowWindowHint
Notes
Issue does not affect Windows OS