Defer to default keybindings for alt + enter
This commit is contained in:
parent
b19a7675a5
commit
8b7db94882
1 changed files with 1 additions and 1 deletions
|
@ -639,7 +639,7 @@ export const CompositionInput = ({
|
|||
return 'enter-emoji';
|
||||
}
|
||||
|
||||
if (e.key === 'Enter' && !e.shiftKey) {
|
||||
if (e.key === 'Enter' && !e.shiftKey && !e.altKey) {
|
||||
if (large && !(controlKey || commandKey)) {
|
||||
return getDefaultKeyBinding(e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue