Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
6.8
-
None
Description
Consider
import QtQuick Rectangle { id: rect anchors.centerIn: parent color: "#09102b" radius: parent.size - parent.gray * parent.size implicitWidth: radius implicitHeight: radius ColorAnimation on color { id: colorAnimation running: false to: "#41cd52" duration: 1500 } }
We have both a direct binding and a ValueSource on color, but it turns out that this is fine: The binding is constant, and the value source is initially not active / running.
Note that it would still be an issue if one of the conditions above would not hold true.