From dea6ecd5b9dd24e1d404a2e80143c638fb4db0c8 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 21 Nov 2024 01:17:11 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/11561 --- app/src/protyle/wysiwyg/commonHotkey.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/protyle/wysiwyg/commonHotkey.ts b/app/src/protyle/wysiwyg/commonHotkey.ts index ddab31abd..b65825543 100644 --- a/app/src/protyle/wysiwyg/commonHotkey.ts +++ b/app/src/protyle/wysiwyg/commonHotkey.ts @@ -52,7 +52,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen if (matchHotKey(window.siyuan.config.keymap.editor.general.copyProtocolInMd.custom, event)) { if (nodeElement) { const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select")); - if (selectElements.length > 0) { + if (selectElements.length === 0) { selectElements.push(nodeElement); } copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "protocolMd") @@ -67,7 +67,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen if (matchHotKey(window.siyuan.config.keymap.editor.general.copyID.custom, event)) { if (nodeElement) { const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select")); - if (selectElements.length > 0) { + if (selectElements.length === 0) { selectElements.push(nodeElement); } copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "id") @@ -81,7 +81,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen if (matchHotKey(window.siyuan.config.keymap.editor.general.copyProtocol.custom, event)) { if (nodeElement) { const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select")); - if (selectElements.length > 0) { + if (selectElements.length === 0) { selectElements.push(nodeElement); } copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "protocol") @@ -96,7 +96,7 @@ export const commonHotkey = (protyle: IProtyle, event: KeyboardEvent, nodeElemen if (matchHotKey(window.siyuan.config.keymap.editor.general.copyBlockEmbed.custom, event)) { if (nodeElement) { const selectElements = Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select")); - if (selectElements.length > 0) { + if (selectElements.length === 0) { selectElements.push(nodeElement); } copyTextByType(selectElements.map(item => item.getAttribute("data-node-id")), "blockEmbed")