From d6d5bcd84e302dfabbdbaffe91aa03160ce685dd Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Sun, 22 Feb 2026 21:30:45 +0100 Subject: [PATCH] Update Dock.qml --- Modules/Dock/Dock.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Dock/Dock.qml b/Modules/Dock/Dock.qml index eb70b95d6..b99ea670f 100644 --- a/Modules/Dock/Dock.qml +++ b/Modules/Dock/Dock.qml @@ -153,7 +153,7 @@ Loader { return 0; const spacing = Style.marginS; const layoutLength = (iconSize * dockItemCount) + (spacing * Math.max(0, dockItemCount - 1)); - const padded = layoutLength + Style.margin2XL * 6; + const padded = layoutLength + (showFrameIndicator ? Style.marginXL : Style.margin2XL * 6); return Math.min(padded, isVertical ? maxHeight : maxWidth); }