From 2a2645d450aefe6c2ad3f7946c9882b8f26c4bc2 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sat, 25 Oct 2025 11:02:11 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/16179 --- app/src/protyle/wysiwyg/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/protyle/wysiwyg/index.ts b/app/src/protyle/wysiwyg/index.ts index 671202005..ce101f8f1 100644 --- a/app/src/protyle/wysiwyg/index.ts +++ b/app/src/protyle/wysiwyg/index.ts @@ -3045,6 +3045,9 @@ export class WYSIWYG { const blockElement = hasClosestBlock(rangeElement); if (blockElement) { newRange = focusBlock(blockElement, undefined, event.clientX < rect.left + parseInt(this.element.style.paddingLeft)) || newRange; + if (protyle.options.render.breadcrumb) { + protyle.breadcrumb.render(protyle, false, blockElement); + } } } // https://github.com/siyuan-note/siyuan/issues/10357