fix: 在块标上滚动时控制台警告 (#13995)

fix https://github.com/siyuan-note/siyuan/issues/13511
This commit is contained in:
Jeffrey Chen 2025-02-03 12:10:25 +08:00 committed by GitHub
parent 429163f729
commit a73af6bcd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -484,7 +484,6 @@ export class Gutter {
this.element.addEventListener("mousewheel", (event) => { this.element.addEventListener("mousewheel", (event) => {
hideElements(["gutter"], protyle); hideElements(["gutter"], protyle);
event.stopPropagation(); event.stopPropagation();
event.preventDefault();
}, {passive: true}); }, {passive: true});
} }