From 7834786c12d78511a5f36f72c1cbf13fda8af123 Mon Sep 17 00:00:00 2001 From: Lysec Date: Mon, 2 Feb 2026 13:49:24 +0100 Subject: [PATCH] Dock: add tiny space between indicator and icon --- Modules/Dock/Dock.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Dock/Dock.qml b/Modules/Dock/Dock.qml index fc3e44b1b..6ce68712f 100644 --- a/Modules/Dock/Dock.qml +++ b/Modules/Dock/Dock.qml @@ -712,7 +712,7 @@ Loader { delegate: Item { id: appButton - readonly property real indicatorMargin: Math.max(2, Math.round(iconSize * 0.12)) + readonly property real indicatorMargin: Math.max(3, Math.round(iconSize * 0.18)) Layout.preferredWidth: isVertical ? iconSize + indicatorMargin * 2 : iconSize Layout.preferredHeight: isVertical ? iconSize : iconSize + indicatorMargin * 2 Layout.alignment: Qt.AlignCenter @@ -1074,8 +1074,8 @@ Loader { // Active indicator - positioned at the edge of the delegate area Rectangle { visible: Settings.data.dock.inactiveIndicators ? isRunning : isActive - width: isVertical ? indicatorMargin * 0.8 : iconSize * 0.2 - height: isVertical ? iconSize * 0.2 : indicatorMargin * 0.8 + width: isVertical ? indicatorMargin * 0.6 : iconSize * 0.2 + height: isVertical ? iconSize * 0.2 : indicatorMargin * 0.6 color: Color.mPrimary radius: Style.radiusXS