summaryrefslogtreecommitdiff
path: root/modules/Shortcuts.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-10 12:59:10 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-07-10 12:59:10 +1000
commit6eb216475658dda3f921b176ffd6740fc65784ce (patch)
tree0a9e26048df28928399f14fa0359ad85b9bf78e9 /modules/Shortcuts.qml
parentlock: fix input dragging (diff)
downloadcaelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.tar.gz
caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.tar.bz2
caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.zip
internal: add utilities panel base
Diffstat (limited to 'modules/Shortcuts.qml')
-rw-r--r--modules/Shortcuts.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Shortcuts.qml b/modules/Shortcuts.qml
index 3d665ff..fe211bd 100644
--- a/modules/Shortcuts.qml
+++ b/modules/Shortcuts.qml
@@ -13,7 +13,7 @@ Scope {
description: "Toggle launcher, dashboard and osd"
onPressed: {
const v = Visibilities.getForActive();
- v.launcher = v.dashboard = v.osd = !(v.launcher || v.dashboard || v.osd);
+ v.launcher = v.dashboard = v.osd = v.utilities = !(v.launcher || v.dashboard || v.osd || v.utilities);
}
}