From 91b50b312d18dfb700bae20779cc81bc1ae5e790 Mon Sep 17 00:00:00 2001 From: zach Date: Thu, 4 Jun 2026 19:01:02 +0200 Subject: [PATCH] open launcher with gesture from bottom border --- Drawers/Interactions.qml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Drawers/Interactions.qml b/Drawers/Interactions.qml index f99f3df..ab7a246 100644 --- a/Drawers/Interactions.qml +++ b/Drawers/Interactions.qml @@ -69,14 +69,17 @@ Item { root.singleGestureTriggered = false; } onCentroidChanged: { - if (root.singleGestureTriggered) - return; - const x = centroid.position.x; const y = centroid.position.y; const dragX = x - centroid.pressPosition.x; const dragY = y - centroid.pressPosition.y; + if (centroid.pressPosition.y >= root.screen.height - Config.barConfig.border && dragY < -200) + root.visibilities.launcher = true; + + if (root.singleGestureTriggered) + return; + if (centroid.pressPosition.y < root.bar.implicitHeight) { if (dragY > 20) { root.visibilities.settings = true;