From 9732279832ab7faa64a2414faf001b7b5e6fe27c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 20 May 2026 20:37:50 +0200 Subject: [PATCH] Fix off-by-two indentation on ImagePicker card properties --- shell/plugins/image-picker/ImagePicker.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/plugins/image-picker/ImagePicker.qml b/shell/plugins/image-picker/ImagePicker.qml index 57517f22..5e66056e 100644 --- a/shell/plugins/image-picker/ImagePicker.qml +++ b/shell/plugins/image-picker/ImagePicker.qml @@ -457,9 +457,9 @@ Item { Item { id: card 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) - height: root.expandedHeight + Style.space(30) + root.bottomChromeHeight - anchors.centerIn: parent + width: Math.min(parent.width - 80, root.expandedWidth + 13 * (root.sliceWidth + root.sliceSpacing) + 40) + height: root.expandedHeight + Style.space(30) + root.bottomChromeHeight + anchors.centerIn: parent MouseArea { anchors.fill: parent; onClicked: {} }