diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-26 14:40:48 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-26 14:40:48 +1000 |
| commit | 790e1a30ccf83a40fbf3aedbab92b5ba8052f456 (patch) | |
| tree | 0d34aaf792e53b3d1eb631f86e98b4421c1328c5 /modules/drawers/Interactions.qml | |
| parent | config: allow enable/disable panels (diff) | |
| download | caelestia-shell-790e1a30ccf83a40fbf3aedbab92b5ba8052f456.tar.gz caelestia-shell-790e1a30ccf83a40fbf3aedbab92b5ba8052f456.tar.bz2 caelestia-shell-790e1a30ccf83a40fbf3aedbab92b5ba8052f456.zip | |
dashboard: show on hover (for touch devices)
Diffstat (limited to 'modules/drawers/Interactions.qml')
| -rw-r--r-- | modules/drawers/Interactions.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/drawers/Interactions.qml b/modules/drawers/Interactions.qml index 6640d22..7eeccf1 100644 --- a/modules/drawers/Interactions.qml +++ b/modules/drawers/Interactions.qml @@ -127,6 +127,15 @@ MouseArea { dashboardShortcutActive = false; } + // Show/hide dashboard on drag (for touchscreen devices) + if (pressed && inTopPanel(panels.dashboard, dragStart.x, dragStart.y) && withinPanelWidth(panels.dashboard, x, y)) { + const dragY = y - dragStart.y; + if (dragY > Config.dashboard.dragThreshold) + visibilities.dashboard = true; + else if (dragY < -Config.dashboard.dragThreshold) + visibilities.dashboard = false; + } + // Show utilities on hover const showUtilities = inBottomPanel(panels.utilities, x, y); |