mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Merge pull request #6837 from SimonBrandner/fix/ctrl-backspace
Don't `fakeDeletion()` when `CTRL` is pressed
This commit is contained in:
commit
5b8279dd16
1 changed files with 3 additions and 1 deletions
|
@ -499,7 +499,9 @@ export default class BasicMessageEditor extends React.Component<IProps, IState>
|
||||||
handled = true;
|
handled = true;
|
||||||
} else if (event.key === Key.BACKSPACE || event.key === Key.DELETE) {
|
} else if (event.key === Key.BACKSPACE || event.key === Key.DELETE) {
|
||||||
this.formatBarRef.current.hide();
|
this.formatBarRef.current.hide();
|
||||||
handled = this.fakeDeletion(event.key === Key.BACKSPACE);
|
if (!event.ctrlKey && !event.metaKey) {
|
||||||
|
handled = this.fakeDeletion(event.key === Key.BACKSPACE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (handled) {
|
if (handled) {
|
||||||
|
|
Loading…
Reference in a new issue