diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 17:06:21 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 17:06:21 +1000 |
| commit | 1656e5c3556fafd388510cd6728e064c802d9e25 (patch) | |
| tree | 701523457f71370a97ec952f2fd75e2ef266a4be /modules/drawers/Drawers.qml | |
| parent | refactor: move to single window (diff) | |
| download | caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.tar.gz caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.tar.bz2 caelestia-shell-1656e5c3556fafd388510cd6728e064c802d9e25.zip | |
osd: show on hover
Diffstat (limited to 'modules/drawers/Drawers.qml')
| -rw-r--r-- | modules/drawers/Drawers.qml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/modules/drawers/Drawers.qml b/modules/drawers/Drawers.qml index d8f242b..937409a 100644 --- a/modules/drawers/Drawers.qml +++ b/modules/drawers/Drawers.qml @@ -70,14 +70,24 @@ Variants { source: background } - Panels { - id: panels + PersistentProperties { + id: visibilities - screen: scope.modelData + property bool launcher + property bool osd + property bool notifs + property bool session } Interactions { - screen: scope.modelData + visibilities: visibilities + + Panels { + id: panels + + screen: scope.modelData + visibilities: visibilities + } } } } |