From bdaf53f1bc1f4407df4602370af198a7f7313c57 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 8 Sep 2023 09:32:06 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/9137 --- app/src/protyle/wysiwyg/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/wysiwyg/index.ts b/app/src/protyle/wysiwyg/index.ts index 031abb19e..61387be08 100644 --- a/app/src/protyle/wysiwyg/index.ts +++ b/app/src/protyle/wysiwyg/index.ts @@ -1985,7 +1985,7 @@ export class WYSIWYG { updateTransaction(protyle, actionId, actionElement.parentElement.outerHTML, html); } } else { - if (protyle.block.id === actionId) { + if (protyle.block.showAll && protyle.block.id === actionId) { enterBack(protyle, actionId); } else { zoomOut({protyle, id: actionId});