Remove cmd imterface

This commit is contained in:
RainLoop Team 2019-03-30 01:54:06 +03:00
parent e449261277
commit 23451c032a
9 changed files with 0 additions and 367 deletions

View file

@ -20,7 +20,6 @@ import {
import {KeyState, Magics} from 'Common/Enums';
import {root, rootAdmin, rootUser, populateAuthSuffix} from 'Common/Links';
import {initOnStartOrLangChange, initNotificationLanguage} from 'Common/Translator';
import {toggle as toggleCmd} from 'Common/Cmd';
import * as Events from 'Common/Events';
import * as Settings from 'Storage/Settings';
@ -120,13 +119,6 @@ class AbstractApp extends AbstractBoot
key('esc, enter', KeyState.All, () => {
detectDropdownVisibility();
});
if (Settings.appSettingsGet('allowCmdInterface'))
{
key('ctrl+shift+`', KeyState.All, () => {
toggleCmd();
});
}
}
remote() {