From 566c7f69c32a01f190a1d70faa04b7e4cbbe11a9 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 29 Apr 2026 08:39:12 +0200 Subject: [PATCH] Reserve convergence dock space --- containments/taskpanel/qml/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containments/taskpanel/qml/main.qml b/containments/taskpanel/qml/main.qml index 31cde951..600f48dc 100644 --- a/containments/taskpanel/qml/main.qml +++ b/containments/taskpanel/qml/main.qml @@ -166,13 +166,13 @@ ContainmentItem { color: "transparent" flags: Qt.FramelessWindowHint | Qt.WindowTransparentForInput // height is set by layer-shell anchoring; provide a fallback. - height: Math.max(1, MobileShell.Constants.navigationPanelThickness) + height: Kirigami.Units.gridUnit * 3 width: 1 // layer-shell stretches it via AnchorLeft|AnchorRight LayerShell.Window.scope: "dock-space" LayerShell.Window.layer: LayerShell.Window.LayerBottom LayerShell.Window.anchors: LayerShell.Window.AnchorBottom | LayerShell.Window.AnchorLeft | LayerShell.Window.AnchorRight - LayerShell.Window.exclusionZone: Math.max(1, MobileShell.Constants.navigationPanelThickness) + LayerShell.Window.exclusionZone: Kirigami.Units.gridUnit * 3 LayerShell.Window.keyboardInteractivity: LayerShell.Window.KeyboardInteractivityNone }