feat: no slideshow transition (#12989)

This commit is contained in:
martin
2024-09-27 17:05:07 +02:00
committed by GitHub
parent 36ee72cd87
commit 3a37fc8bfd
4 changed files with 12 additions and 7 deletions

View File

@@ -38,6 +38,7 @@ function createSlideshowStore() {
const showProgressBar = persisted<boolean>('slideshow-show-progressbar', true);
const slideshowDelay = persisted<number>('slideshow-delay', 5, {});
const slideshowTransition = persisted<boolean>('slideshow-transition', true);
return {
restartProgress: {
@@ -67,6 +68,7 @@ function createSlideshowStore() {
slideshowState,
slideshowDelay,
showProgressBar,
slideshowTransition,
};
}