diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 16:53:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 16:53:15 +1000 |
| commit | f52fb9bd9ee73d785c5a7141c1924a89e05f212a (patch) | |
| tree | 5fdc891ac229e026c83575359c36d884bf1060f2 /modules/launcher/AppList.qml | |
| parent | launcher: add random wallpaper action (diff) | |
| download | caelestia-shell-f52fb9bd9ee73d785c5a7141c1924a89e05f212a.tar.gz caelestia-shell-f52fb9bd9ee73d785c5a7141c1924a89e05f212a.tar.bz2 caelestia-shell-f52fb9bd9ee73d785c5a7141c1924a89e05f212a.zip | |
launcher: show current scheme/variant
Also qsTr variant stuff
Diffstat (limited to 'modules/launcher/AppList.qml')
| -rw-r--r-- | modules/launcher/AppList.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml index 2ede78e..9e10087 100644 --- a/modules/launcher/AppList.qml +++ b/modules/launcher/AppList.qml @@ -50,6 +50,11 @@ StyledListView { return "apps"; } + onStateChanged: { + if (state === "scheme" || state === "variant") + Schemes.reload(); + } + states: [ State { name: "apps" |