mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Fix slideshow autoplaying when on another tab (#2563)
This commit is contained in:
@@ -279,8 +279,11 @@ export const LightboxComponent: React.FC<IProps> = ({
|
||||
}
|
||||
}, [slideshowInterval, slideshowDelay]);
|
||||
|
||||
usePageVisibility(() => {
|
||||
toggleSlideshow();
|
||||
// stop slideshow when the page is hidden
|
||||
usePageVisibility((hidden: boolean) => {
|
||||
if (hidden) {
|
||||
setSlideshowInterval(null);
|
||||
}
|
||||
});
|
||||
|
||||
const close = useCallback(() => {
|
||||
|
||||
Reference in New Issue
Block a user