mirror of
https://github.com/siyuan-note/siyuan
synced 2026-04-21 13:37:52 +00:00
🎨 Improve input method compatibility https://github.com/siyuan-note/siyuan/issues/17546
Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
parent
e9cc256964
commit
0ddcf82eb2
1 changed files with 4 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue