From 87fa7cfe5aba95f39a949c5ca83ef1078dcd8241 Mon Sep 17 00:00:00 2001 From: Noelia Date: Wed, 19 Apr 2023 12:37:38 +0200 Subject: [PATCH] feat(SQ/StatusRoundedImage): Added border If border is specified, the image has the same margin as the border, so the component embeds a border around the image. --- ui/StatusQ/src/StatusQ/Components/StatusRoundedImage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/StatusQ/src/StatusQ/Components/StatusRoundedImage.qml b/ui/StatusQ/src/StatusQ/Components/StatusRoundedImage.qml index 091f9a45aa..87ed4cf9b7 100644 --- a/ui/StatusQ/src/StatusQ/Components/StatusRoundedImage.qml +++ b/ui/StatusQ/src/StatusQ/Components/StatusRoundedImage.qml @@ -26,5 +26,6 @@ StatusRoundedComponent { StatusImage { id: image anchors.fill: parent + anchors.margins: parent.border.width } }