From 41a64bfe8e1f70b231d7538ef74139ae47ef68de Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Sat, 11 Apr 2026 10:34:23 +0200 Subject: [PATCH] Add opaque background to dock overlay window The transparent dock overlay at LayerTop let maximized app content bleed through, visible as a colored band (e.g. VLC's orange toolbar) behind the favourites bar. Add a Rectangle with Kirigami.Theme.backgroundColor using the Window colorset, matching the pattern used by NavigationPanelComponent. --- containments/homescreens/folio/qml/main.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/containments/homescreens/folio/qml/main.qml b/containments/homescreens/folio/qml/main.qml index f20153b8..2b5aebb3 100644 --- a/containments/homescreens/folio/qml/main.qml +++ b/containments/homescreens/folio/qml/main.qml @@ -176,6 +176,13 @@ ContainmentItem { LayerShell.Window.exclusionZone: -1 LayerShell.Window.keyboardInteractivity: LayerShell.Window.KeyboardInteractivityOnDemand + Rectangle { + anchors.fill: parent + Kirigami.Theme.inherit: false + Kirigami.Theme.colorSet: Kirigami.Theme.Window + color: Kirigami.Theme.backgroundColor + } + FavouritesBar { id: dockOverlayBar anchors.fill: parent