From 8487ccb35eb1a25f1b794c70cf74a8b4fe04e7e7 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sat, 29 Aug 2020 19:06:37 -0400 Subject: [PATCH] Fix minor overlap --- containments/panel/package/contents/ui/SlidingPanel.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/containments/panel/package/contents/ui/SlidingPanel.qml b/containments/panel/package/contents/ui/SlidingPanel.qml index 23436929..0e2acb7b 100644 --- a/containments/panel/package/contents/ui/SlidingPanel.qml +++ b/containments/panel/package/contents/ui/SlidingPanel.qml @@ -122,9 +122,11 @@ NanoShell.FullScreenOverlay { Rectangle { anchors { - fill: parent - topMargin: root.height // top panel background handled separately in main.qml + left: parent.left + right: parent.right + bottom: parent.bottom } + height: parent.height - headerHeight color: "black" opacity: 0.6 * Math.min(1, offset/contentArea.height)