1
0
mirror of https://github.com/excalidraw/excalidraw.git synced 2024-11-10 11:35:52 +01:00

fix: indenting via tab clashing with IME compositor (#6258)

This commit is contained in:
Hikaru Yoshino 2023-02-22 20:10:29 +09:00 committed by GitHub
parent 5368ddef74
commit 1e816e87bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -463,7 +463,9 @@ export const textWysiwyg = ({
event.code === CODES.BRACKET_RIGHT))
) {
event.preventDefault();
if (event.shiftKey || event.code === CODES.BRACKET_LEFT) {
if (event.isComposing) {
return;
} else if (event.shiftKey || event.code === CODES.BRACKET_LEFT) {
outdent();
} else {
indent();