From 81d245877aa14410c5591b6c5fb072d8beddcede Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 6 Jun 2025 20:12:33 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/14682 --- app/src/mobile/util/touch.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/src/mobile/util/touch.ts b/app/src/mobile/util/touch.ts index bf227e175..36d1486e3 100644 --- a/app/src/mobile/util/touch.ts +++ b/app/src/mobile/util/touch.ts @@ -271,11 +271,12 @@ export const handleTouchMove = (event: TouchEvent) => { scrollBlock = true; return; } - if (scrollBlock) { - return; - } + } + if (scrollBlock) { + return; } } + if (isFirstMove) { sideMaskElement.style.zIndex = (++window.siyuan.zIndex).toString(); document.getElementById("sidebar").style.zIndex = (++window.siyuan.zIndex).toString();