diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-07 17:58:18 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-07 17:58:18 +1000 |
| commit | 8a6679eace029338747f0fe95ca683016fce783e (patch) | |
| tree | cfec1f7045ac457478acf8917a123907ccee5d6c /services | |
| parent | dashboard: fix pfp picker (diff) | |
| download | caelestia-shell-8a6679eace029338747f0fe95ca683016fce783e.tar.gz caelestia-shell-8a6679eace029338747f0fe95ca683016fce783e.tar.bz2 caelestia-shell-8a6679eace029338747f0fe95ca683016fce783e.zip | |
paths: decode urls
Fixes spaces in paths breaking things
Diffstat (limited to 'services')
| -rw-r--r-- | services/Colours.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/Colours.qml b/services/Colours.qml index 3a26e84..9492c8b 100644 --- a/services/Colours.qml +++ b/services/Colours.qml @@ -58,7 +58,7 @@ Singleton { } FileView { - path: `${Paths.state}/scheme.json` + path: `${Paths.stringify(Paths.state)}/scheme.json` watchChanges: true onFileChanged: reload() onLoaded: root.load(text(), false) |