Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.6.2, 5.7, 5.8.0 RC, 5.9.0 Beta 1
-
None
Description
easing.type on specific ColorAnimation/PropertyAnimation triggers ununderstandable error : "Property assignment expected" on the easing.type line
To reproduce :
import QtQuick 2.0 import QtQuick.Window 2.0 Window { visible: true width: 640 height: 480 id: root Rectangle { id: outLed width: height height: parent.height / 2 radius: width / 2 color: "darkgray" ColorAnimation on color { id: colorAnimOut from: "Red" to: "darkgray" duration: 250 easing.type: Easing.InOutQuad } } }