From c2f4c8ad88bc86cae0c92a9b44235615c9f31e9f Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Mon, 4 May 2026 09:47:40 +0200 Subject: [PATCH] Keep wallpaper selector drawer below the status bar Pass topMargin to the WallpaperSelector in landscape/horizontal mode so the drawer does not overlap the top status bar. --- containments/homescreens/folio/qml/main.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/containments/homescreens/folio/qml/main.qml b/containments/homescreens/folio/qml/main.qml index a6580259..b27346e6 100644 --- a/containments/homescreens/folio/qml/main.qml +++ b/containments/homescreens/folio/qml/main.qml @@ -924,6 +924,7 @@ ContainmentItem { maskManager: root.frontMaskManager horizontal: root.width > root.height edge: horizontal ? Qt.LeftEdge : Qt.BottomEdge + topMargin: horizontal ? folioHomeScreen.topMargin : 0 bottomMargin: horizontal ? 0 : folioHomeScreen.bottomMargin leftMargin: horizontal ? folioHomeScreen.leftMargin : 0 rightMargin: horizontal ? folioHomeScreen.rightMargin : 0