Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt for MCUs 1.8
-
-
a109645d81330795d4d2cc03cb3ee28fa1b70fbc
-
Sprint 3.1/2021
Description
Rectangle {
width: 400
height: 300
Column {
anchors.fill: parent
Rectangle {
id: rect1Id
width: 100
height: 100
color: "#99ff66"
MouseArea {
anchors.fill: parent
onClicked: parent.visible = false // rect2Id position not changed
}
}
Rectangle
{ id: rect2Id width: 100 height: 100 color: "#33cccc" }}
}