A photo manager for VRChat.

fix scroll to top button not animating out

phaz.uk e2f4330f d3a9148d

verified
Changed files
+4 -2
src
Components
+2 -1
changelog
··· 107 107 - Fixed photos not being loaded if they're too low resolution 108 108 - Added close to tray toggle 109 109 - Fixed "Open in folder" not selecting files on linux 110 - - Remove all sync stuff 110 + - Remove all sync stuff 111 + - Fixed scroll to top button not animating out
+2 -1
src/Components/PhotoList.tsx
··· 103 103 104 104 scrollToTopActive = true; 105 105 } else if(scrollToTopActive && scroll < photoContainer.height){ 106 - animate(scrollToTop, { opacity: 0, translateY: '-10px', complete: () => scrollToTop.style.display = 'none', easing: 'easeInOutQuad', duration: 100 }); 106 + animate(scrollToTop, { opacity: 0, translateY: '-10px', onComplete: () => scrollToTop.style.display = 'none', easing: 'easeInOutQuad', duration: 100 }); 107 + 107 108 scrollToTopActive = false; 108 109 } 109 110