diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dashboard/Media.qml | 2 | ||||
| -rw-r--r-- | modules/dashboard/dash/Media.qml | 2 | ||||
| -rw-r--r-- | modules/dashboard/dash/User.qml | 2 | ||||
| -rw-r--r-- | modules/lock/Center.qml | 2 | ||||
| -rw-r--r-- | modules/session/Content.qml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/modules/dashboard/Media.qml b/modules/dashboard/Media.qml index 5817d3e..937e07e 100644 --- a/modules/dashboard/Media.qml +++ b/modules/dashboard/Media.qml @@ -526,7 +526,7 @@ Item { playing: Players.active?.isPlaying ?? false speed: BeatDetector.bpm / 300 - source: Paths.expandTilde(Config.paths.mediaGif) + source: Paths.absolutePath(Config.paths.mediaGif) asynchronous: true fillMode: AnimatedImage.PreserveAspectFit } diff --git a/modules/dashboard/dash/Media.qml b/modules/dashboard/dash/Media.qml index eda44d5..7cb9e3e 100644 --- a/modules/dashboard/dash/Media.qml +++ b/modules/dashboard/dash/Media.qml @@ -209,7 +209,7 @@ Item { playing: Players.active?.isPlaying ?? false speed: BeatDetector.bpm / 300 - source: Paths.expandTilde(Config.paths.mediaGif) + source: Paths.absolutePath(Config.paths.mediaGif) asynchronous: true fillMode: AnimatedImage.PreserveAspectFit } diff --git a/modules/dashboard/dash/User.qml b/modules/dashboard/dash/User.qml index 2576e3e..db12d01 100644 --- a/modules/dashboard/dash/User.qml +++ b/modules/dashboard/dash/User.qml @@ -36,7 +36,7 @@ Row { id: pfp anchors.fill: parent - path: `${Paths.stringify(Paths.home)}/.face` + path: `${Paths.home}/.face` } MouseArea { diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index b76b7f4..ce5db92 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -105,7 +105,7 @@ ColumnLayout { id: pfp anchors.fill: parent - path: `${Paths.stringify(Paths.home)}/.face` + path: `${Paths.home}/.face` } } diff --git a/modules/session/Content.qml b/modules/session/Content.qml index ca6bf17..41ecb3b 100644 --- a/modules/session/Content.qml +++ b/modules/session/Content.qml @@ -61,7 +61,7 @@ Column { playing: visible asynchronous: true speed: 0.7 - source: Paths.expandTilde(Config.paths.sessionGif) + source: Paths.absolutePath(Config.paths.sessionGif) } SessionButton { |