1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 16:02:51 -05:00

Allow 0 spacing

This commit is contained in:
bbedward
2025-09-26 13:49:00 -04:00
parent 01125e092c
commit 4c6182b79c

View File

@@ -103,7 +103,7 @@ PanelWindow {
} }
return triggerX return triggerX
} }
readonly property real calculatedY: Math.max(Theme.spacingM, Math.min(screenHeight - popupHeight - Theme.spacingM, triggerY)) readonly property real calculatedY: Math.max(0, Math.min(screenHeight - popupHeight - Theme.spacingM, triggerY))
width: popupWidth width: popupWidth
height: popupHeight height: popupHeight