Clean up ContentView/Show warnings

This commit is contained in:
2022-08-31 19:22:33 -04:00
parent bc0a9c8686
commit 60676ffde9
+1 -5
View File
@@ -18,8 +18,6 @@ Item {
height: baseHeight height: baseHeight
width: (baseHeight * 8 / 7) * 0.68 width: (baseHeight * 8 / 7) * 0.68
Column {
anchors.fill: parent
Item { Item {
id: parentElem id: parentElem
state: (elemSelected && (index == xIndex)) ? "selected" : "deselected" state: (elemSelected && (index == xIndex)) ? "selected" : "deselected"
@@ -40,7 +38,7 @@ Item {
border.color: "orange" border.color: "orange"
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
radius: parent.borderRadius radius: borderRadius
} }
Image { Image {
id: img id: img
@@ -96,7 +94,5 @@ Item {
} }
} }
] ]
}
} }
} }