mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Add support for committing a text entry on cmd/shift click (#1185)
This commit is contained in:
parent
b9b58d4464
commit
980d08ce56
1 changed files with 7 additions and 0 deletions
|
@ -109,6 +109,13 @@ export function textWysiwyg({
|
|||
ev.preventDefault();
|
||||
handleSubmit();
|
||||
}
|
||||
if (ev.key === KEYS.ENTER && (ev.shiftKey || ev.metaKey)) {
|
||||
ev.preventDefault();
|
||||
if (ev.isComposing || ev.keyCode === 229) {
|
||||
return;
|
||||
}
|
||||
handleSubmit();
|
||||
}
|
||||
if (ev.key === KEYS.ENTER && !ev.shiftKey) {
|
||||
ev.stopPropagation();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue