Details
-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
Qt for MCUs 1.9
-
None
-
QUL Sprint 4.6/2021, QUL Sprint 1.1/2022, QUL Sprint 1.2/2021, QUL Sprint 1.3/2022
Description
demo code:
property alias animationEnabled: rotationBehavior.enabled Behavior on animatedValue { id: rotationBehavior NumberAnimation { id: rotationAnimation easing.type: Easing.InQuad } }
gives error:
error C2039: 'enabled': is not a member of 'Needle::rotationBehavior_Behavior'
Temp solution:
property bool animationEnabled: rotationBehavior.enabled Behavior on animatedValue { id: rotationBehavior enabled: animationEnabled NumberAnimation { id: rotationAnimation easing.type: Easing.InQuad } }
Attachments
Issue Links
- mentioned in
-
Page Loading...