Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
Qt for MCUs 1.9
-
None
-
Sprint 4.4/2021, QUL Sprint 4.5/2021, QUL Sprint 4.6/2021
Description
here is the demo:
Rectangle {
id: root
color: "#000000"
width: 800
height: 480
property alias testScale1: testScale.testScale2
component Test: Item {
property alias testScale2: test.scale
Image {
id: test
scale: 1
}
}
Test {
id: testScale
}
}
temp solution:
Rectangle {
id: root
color: "#000000"
width: 800
height: 480
property alias testScale1: testScale.testScale2
component Test: Item {
property real testScale2: test.scale
Image {
id: test
scale: 1
}
}
Test {
id: testScale
}
}
Attachments
Issue Links
- mentioned in
-
Page Loading...