diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml index 701e2452..84df4c39 100644 --- a/modules/notifications/Content.qml +++ b/modules/notifications/Content.qml @@ -28,13 +28,13 @@ Item { if (visibilities && panel) { if (visibilities.osd) { - const h = panel.osd.y - Config.border.rounding * 2; + const h = panel.osd.y - Config.border.rounding * 2 - padding * 2; if (height > h) height = h; } if (visibilities.session) { - const h = panel.session.y - Config.border.rounding * 2; + const h = panel.session.y - Config.border.rounding * 2 - padding * 2; if (height > h) height = h; }