fix: top bar not showing when reaching the top of the moments page (#205)

This commit is contained in:
Hakadao
2024-01-23 01:34:32 +08:00
parent 778382eb11
commit ec38fafeab

View File

@@ -143,6 +143,9 @@ function handleScroll() {
scrollTop.value = document.documentElement.scrollTop
}
if (scrollTop.value === 0)
toggleTopBarVisible(true)
if (settings.value.autoHideTopBar && !hoveringTopBar.value && scrollTop.value !== 0) {
if (scrollTop.value > oldScrollTop.value)
toggleTopBarVisible(false)