fix formatBar not hidden after highlight-backspacing text partially

pull/21833/head
thobyv-kismat 2020-03-24 19:50:37 +01:00
parent 5986bbc561
commit c95b23f3ec
1 changed files with 2 additions and 0 deletions

View File

@ -447,6 +447,8 @@ export default class BasicMessageEditor extends React.Component {
} else if (event.key === Key.TAB) {
this._tabCompleteName();
handled = true;
} else if (event.key === Key.BACKSPACE) {
this._formatBarRef.hide();
}
}
if (handled) {