From 55b985bc895a71a21eaba4eb816191c0b8a9657f Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Fri, 10 Apr 2026 13:04:10 +0200 Subject: [PATCH] Exclude dock area from drawer dismiss overlay The click-to-dismiss overlay for the app drawer popup covered the dock, intercepting taps on dock icons. Add a bottom margin equal to the dock height in convergence mode so dock icons remain interactive. --- containments/homescreens/folio/qml/FolioHomeScreen.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/containments/homescreens/folio/qml/FolioHomeScreen.qml b/containments/homescreens/folio/qml/FolioHomeScreen.qml index ea89173e..10063e14 100644 --- a/containments/homescreens/folio/qml/FolioHomeScreen.qml +++ b/containments/homescreens/folio/qml/FolioHomeScreen.qml @@ -517,6 +517,7 @@ Item { // Click-to-dismiss overlay for popup drawer in convergence mode MouseArea { anchors.fill: parent + anchors.bottomMargin: ShellSettings.Settings.convergenceModeEnabled ? favouritesBar.height : 0 visible: ShellSettings.Settings.convergenceModeEnabled && homeScreenState.appDrawerOpenProgress > 0 onClicked: folio.HomeScreenState.closeAppDrawer() }