diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-18 23:49:51 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-18 23:49:51 +0800 |
| commit | 38e103e55537d45124f181e64d77b4342f6b1cdc (patch) | |
| tree | 65af3757d13737ea8e0ce61c04c449ef4e60e6b1 /modules | |
| parent | dashboard: add datetime (diff) | |
| download | caelestia-shell-38e103e55537d45124f181e64d77b4342f6b1cdc.tar.gz caelestia-shell-38e103e55537d45124f181e64d77b4342f6b1cdc.tar.bz2 caelestia-shell-38e103e55537d45124f181e64d77b4342f6b1cdc.zip | |
launcher: fix actions
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/launcher/Actions.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/launcher/Actions.qml b/modules/launcher/Actions.qml index 8677154..8023e37 100644 --- a/modules/launcher/Actions.qml +++ b/modules/launcher/Actions.qml @@ -53,7 +53,7 @@ Singleton { icon: "light_mode" function onClicked(list: AppList): void { - list.launcher.launcherVisible = false; + list.visibilities.launcher = false; Colours.setMode("light"); } }, @@ -63,7 +63,7 @@ Singleton { icon: "dark_mode" function onClicked(list: AppList): void { - list.launcher.launcherVisible = false; + list.visibilities.launcher = false; Colours.setMode("dark"); } }, @@ -73,7 +73,7 @@ Singleton { icon: "lock" function onClicked(list: AppList): void { - list.launcher.launcherVisible = false; + list.visibilities.launcher = false; lock.running = true; } }, @@ -83,7 +83,7 @@ Singleton { icon: "bedtime" function onClicked(list: AppList): void { - list.launcher.launcherVisible = false; + list.visibilities.launcher = false; sleep.running = true; } } |