fix: launcher incorrect max height

This commit is contained in:
2 * r + 2 * t 2026-06-04 17:08:43 +10:00
parent b620f4c772
commit 7403004c73

View file

@ -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;