launcher: fix actions
This commit is contained in:
parent
c6a389120d
commit
38e103e555
1 changed files with 4 additions and 4 deletions
|
|
@ -53,7 +53,7 @@ Singleton {
|
||||||
icon: "light_mode"
|
icon: "light_mode"
|
||||||
|
|
||||||
function onClicked(list: AppList): void {
|
function onClicked(list: AppList): void {
|
||||||
list.launcher.launcherVisible = false;
|
list.visibilities.launcher = false;
|
||||||
Colours.setMode("light");
|
Colours.setMode("light");
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -63,7 +63,7 @@ Singleton {
|
||||||
icon: "dark_mode"
|
icon: "dark_mode"
|
||||||
|
|
||||||
function onClicked(list: AppList): void {
|
function onClicked(list: AppList): void {
|
||||||
list.launcher.launcherVisible = false;
|
list.visibilities.launcher = false;
|
||||||
Colours.setMode("dark");
|
Colours.setMode("dark");
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -73,7 +73,7 @@ Singleton {
|
||||||
icon: "lock"
|
icon: "lock"
|
||||||
|
|
||||||
function onClicked(list: AppList): void {
|
function onClicked(list: AppList): void {
|
||||||
list.launcher.launcherVisible = false;
|
list.visibilities.launcher = false;
|
||||||
lock.running = true;
|
lock.running = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -83,7 +83,7 @@ Singleton {
|
||||||
icon: "bedtime"
|
icon: "bedtime"
|
||||||
|
|
||||||
function onClicked(list: AppList): void {
|
function onClicked(list: AppList): void {
|
||||||
list.launcher.launcherVisible = false;
|
list.visibilities.launcher = false;
|
||||||
sleep.running = true;
|
sleep.running = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue