🎨 Prevent scroll jump on heading expansion (#16307)

fix https://github.com/siyuan-note/siyuan/issues/15715
This commit is contained in:
Jeffrey Chen 2026-03-07 23:31:07 +08:00 committed by GitHub
parent 5be6c0e2a9
commit fe73dbd784
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -399,7 +399,6 @@ export const onTransaction = (protyle: IProtyle, operation: IOperation, isUndo:
return;
}
if (operation.action === "unfoldHeading") {
const scrollTop = protyle.contentElement.scrollTop;
protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${operation.id}"]`).forEach(item => {
item.removeAttribute("fold");
// undo 会走 transaction
@ -428,8 +427,6 @@ export const onTransaction = (protyle: IProtyle, operation: IOperation, isUndo:
highlightRender(protyle.wysiwyg.element);
avRender(protyle.wysiwyg.element, protyle);
blockRender(protyle, protyle.wysiwyg.element);
protyle.contentElement.scrollTop = scrollTop;
protyle.scroll.lastScrollTop = scrollTop;
}
return;
}