Merge pull request #4269 from ThobyV/thobyv/hide-formatBar-on-highlight-backspacing-message

Fix formatBar not hidden after highlight and backspacing some text
This commit is contained in:
Bruno Windels
2020-03-26 13:19:06 +00:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ export const Key = {
PAGE_UP: "PageUp",
PAGE_DOWN: "PageDown",
BACKSPACE: "Backspace",
DELETE: "Delete",
ARROW_UP: "ArrowUp",
ARROW_DOWN: "ArrowDown",
ARROW_LEFT: "ArrowLeft",

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 || event.key === Key.DELETE) {
this._formatBarRef.hide();
}
}
if (handled) {