Support CTRL+I for opening TopLeftMenu

This commit is contained in:
Travis Ralston 2019-05-17 15:28:12 -06:00
parent f1aa2875e1
commit c5757d8303
4 changed files with 45 additions and 5 deletions

View file

@ -322,6 +322,14 @@ const LoggedInView = React.createClass({
handled = true;
}
break;
case KeyCode.KEY_I:
if (ctrlCmdOnly) {
dis.dispatch({
action: 'toggle_top_left_menu',
});
handled = true;
}
break;
}
if (handled) {