summaryrefslogtreecommitdiff
path: root/modules/dashboard
diff options
context:
space:
mode:
authorEvertiro <dgriffiths@widgitlabs.com>2026-02-04 02:04:10 -0600
committerGitHub <noreply@github.com>2026-02-04 19:04:10 +1100
commit7a41a85954a40366bd25ed4e33d1cd9146507ad4 (patch)
treeea4735d7dd4d220328cd97f26f811795cb13a082 /modules/dashboard
parentdesktopclock: background blur GameMode support (#1145) (diff)
downloadcaelestia-shell-7a41a85954a40366bd25ed4e33d1cd9146507ad4.tar.gz
caelestia-shell-7a41a85954a40366bd25ed4e33d1cd9146507ad4.tar.bz2
caelestia-shell-7a41a85954a40366bd25ed4e33d1cd9146507ad4.zip
config: allow adjusting the speed of gifs (#1147)
Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
Diffstat (limited to 'modules/dashboard')
-rw-r--r--modules/dashboard/Media.qml2
-rw-r--r--modules/dashboard/dash/Media.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/dashboard/Media.qml b/modules/dashboard/Media.qml
index 37d1226..ce5db35 100644
--- a/modules/dashboard/Media.qml
+++ b/modules/dashboard/Media.qml
@@ -380,7 +380,7 @@ Item {
height: visualiser.height * 0.75
playing: Players.active?.isPlaying ?? false
- speed: Audio.beatTracker.bpm / 300
+ speed: Audio.beatTracker.bpm / Appearance.anim.mediaGifSpeedAdjustment
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 3a2b685..ad87335 100644
--- a/modules/dashboard/dash/Media.qml
+++ b/modules/dashboard/dash/Media.qml
@@ -213,7 +213,7 @@ Item {
anchors.margins: Appearance.padding.large * 2
playing: Players.active?.isPlaying ?? false
- speed: Audio.beatTracker.bpm / 300
+ speed: Audio.beatTracker.bpm / Appearance.anim.mediaGifSpeedAdjustment
source: Paths.absolutePath(Config.paths.mediaGif)
asynchronous: true
fillMode: AnimatedImage.PreserveAspectFit