Enable ctrl+k room filter focus

By using the `focus_room_filter` dispatch
pull/21833/head
Luke Barnard 2017-07-12 13:51:55 +01:00
parent 569ea909c4
commit 0dbd1d988e
1 changed files with 7 additions and 0 deletions

View File

@ -184,6 +184,13 @@ export default React.createClass({
handled = true;
}
break;
case KeyCode.KEY_K:
if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) {
dis.dispatch({
action: 'focus_room_filter',
});
}
break;
}
if (handled) {