Remove room-settings hotkeys

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura 2021-12-31 17:39:39 +05:30
parent a0399b7f5e
commit 6fdd9ed48b

View file

@ -1,4 +1,4 @@
import { openSearch, toggleRoomSettings } from '../action/navigation'; import { openSearch } from '../action/navigation';
import navigation from '../state/navigation'; import navigation from '../state/navigation';
function listenKeyboard(event) { function listenKeyboard(event) {
@ -13,17 +13,6 @@ function listenKeyboard(event) {
} }
if (!event.ctrlKey && !event.altKey) { if (!event.ctrlKey && !event.altKey) {
if (event.keyCode === 38 && navigation.isRoomSettings) {
// close room settings
toggleRoomSettings();
return;
}
if (event.keyCode === 40 && !navigation.isRoomSettings) {
// open room settings
toggleRoomSettings();
return;
}
if (navigation.isRawModalVisible) return; if (navigation.isRawModalVisible) return;
if (['text', 'textarea'].includes(document.activeElement.type)) { if (['text', 'textarea'].includes(document.activeElement.type)) {
return; return;