1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

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) {