Fix off-by-two indentation on ImagePicker card properties
This commit is contained in:
@@ -457,9 +457,9 @@ Item {
|
|||||||
Item {
|
Item {
|
||||||
id: card
|
id: card
|
||||||
visible: root.opened && root.imagesLoaded && root.layoutSettled && root.imageArray.length > 0
|
visible: root.opened && root.imagesLoaded && root.layoutSettled && root.imageArray.length > 0
|
||||||
width: Math.min(parent.width - 80, root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing) + 40)
|
width: Math.min(parent.width - 80, root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing) + 40)
|
||||||
height: root.expandedHeight + Style.space(30) + root.bottomChromeHeight
|
height: root.expandedHeight + Style.space(30) + root.bottomChromeHeight
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|
||||||
MouseArea { anchors.fill: parent; onClicked: {} }
|
MouseArea { anchors.fill: parent; onClicked: {} }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user