From adf193ed32ef2463305bea3ef6c8e9e309b9d03c Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 6 Apr 2023 11:02:20 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/7896 --- app/src/mobile/util/touch.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/mobile/util/touch.ts b/app/src/mobile/util/touch.ts index 9af79cd67..7124f2fa0 100644 --- a/app/src/mobile/util/touch.ts +++ b/app/src/mobile/util/touch.ts @@ -232,6 +232,8 @@ export const handleTouchMove = (event: TouchEvent) => { document.getElementById("menu").style.right = -windowWidth + xDiff + "px"; transformMask((windowWidth - xDiff) / windowWidth); } + activeBlur(); + hideKeyboardToolbar(); } };