Add cmd interface

This commit is contained in:
RainLoop Team 2016-08-22 00:30:34 +03:00
parent 17669b7be0
commit e6e1a19477
22 changed files with 540 additions and 111 deletions

View file

@ -115,9 +115,12 @@ class AbstractApp extends AbstractBoot
detectDropdownVisibility();
});
key('ctrl+shift+`', KeyState.All, () => {
toggleCmd();
});
if (Settings.appSettingsGet('allowCmdInterface'))
{
key('ctrl+shift+`', KeyState.All, () => {
toggleCmd();
});
}
}
remote() {