Don't fake deletion when CTRL is pressed

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-09-18 20:43:23 +02:00
parent eb0859c4a6
commit 649b655a48
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D

View file

@ -499,7 +499,9 @@ export default class BasicMessageEditor extends React.Component<IProps, IState>
handled = true;
} else if (event.key === Key.BACKSPACE || event.key === Key.DELETE) {
this.formatBarRef.current.hide();
handled = this.fakeDeletion(event.key === Key.BACKSPACE);
if (!event.ctrlKey) {
handled = this.fakeDeletion(event.key === Key.BACKSPACE);
}
}
if (handled) {