Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
Qt for MCUs 1.9
Description
demo code:
import QtQuick import QtQuick.Controls import QtQuick.Timeline Rectangle { width: 400 height: 400 Image { id: test } Timeline { KeyframeGroup { target: test property: "scale" Keyframe { frame: 0; value: 1.1 } } } }
Temp solution:
Rectangle {
width: 400
height: 400
Image {
id: test
scale: 1
}
Timeline {
KeyframeGroup {
target: test
property: "scale"
Keyframe { frame: 0; value: 1.1 }
}
}
}
Attachments
Issue Links
- mentioned in
-
Page Loading...