Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2026-04-20 20:05:16 +08:00
parent e9cc256964
commit 0ddcf82eb2
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -2518,7 +2518,10 @@ export class WYSIWYG {
input(protyle, blockElement, range, true, event);
}, Constants.TIMEOUT_INPUT);
} else {
input(protyle, blockElement, range, true, event);
clearTimeout(timeout); // https://github.com/siyuan-note/siyuan/issues/9179
timeout = window.setTimeout(() => {
input(protyle, blockElement, range, true, event);
});
}
}
event.stopPropagation();