From 7403004c73782ee1af1b36563f163292c055a32e Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 4 Jun 2026 17:08:43 +1000 Subject: [PATCH] fix: launcher incorrect max height --- modules/launcher/Wrapper.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml index 290c8dc6..f8f87860 100644 --- a/modules/launcher/Wrapper.qml +++ b/modules/launcher/Wrapper.qml @@ -16,7 +16,7 @@ Item { readonly property bool shouldBeActive: visibilities.launcher && Config.launcher.enabled readonly property real maxHeight: { - let max = screen.height - Config.border.thickness * 2 + Tokens.padding.large; + let max = screen.height - Config.border.thickness * 2 + Tokens.padding.extraLarge; if (visibilities.dashboard) max -= panels.dashboard.nonAnimHeight; return max;