feat: make memories slideshow duration configurable (#22783)

This commit is contained in:
Mees Frensel
2025-11-08 23:46:43 +01:00
committed by GitHub
parent 4905bba694
commit 9cc88ed2a6
11 changed files with 65 additions and 4 deletions
@@ -102,7 +102,7 @@
});
} else {
progressBarController = new Tween<number>(0, {
duration: (from: number, to: number) => (to ? 5000 * (to - from) : 0),
duration: (from: number, to: number) => (to ? $preferences.memories.duration * 1000 * (to - from) : 0),
});
}
};