From 38c1f7bbcbc6a955fe408acaea286e838a94812a Mon Sep 17 00:00:00 2001 From: max72bra <45419961+max72bra@users.noreply.github.com> Date: Wed, 15 Oct 2025 14:16:05 +0200 Subject: [PATCH] small fix: update popout column space (#441) --- Modules/SystemUpdatePopout.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Modules/SystemUpdatePopout.qml b/Modules/SystemUpdatePopout.qml index 2d09c735..04e989eb 100644 --- a/Modules/SystemUpdatePopout.qml +++ b/Modules/SystemUpdatePopout.qml @@ -220,7 +220,7 @@ DankPopout { Column { anchors.verticalCenter: parent.verticalCenter - width: parent.width - 24 - Theme.spacingM + width: parent.width - Theme.spacingM spacing: 2 StyledText { @@ -262,14 +262,14 @@ DankPopout { width: parent.width height: 48 spacing: Theme.spacingM - + Rectangle { width: (parent.width - Theme.spacingM) / 2 height: parent.height radius: Theme.cornerRadius color: updateMouseArea.containsMouse ? Theme.primaryHover : Theme.secondaryHover opacity: SystemUpdateService.updateCount > 0 ? 1.0 : 0.5 - + Behavior on color { ColorAnimation { duration: Theme.shortDuration } } @@ -306,14 +306,14 @@ DankPopout { } } } - + Rectangle { width: (parent.width - Theme.spacingM) / 2 height: parent.height radius: Theme.cornerRadius color: closeMouseArea.containsMouse ? Theme.errorPressed : Theme.secondaryHover - + Behavior on color { ColorAnimation { duration: Theme.shortDuration } } @@ -353,4 +353,4 @@ DankPopout { } } -} \ No newline at end of file +}