mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Enable ctrl+k room filter focus
By using the `focus_room_filter` dispatch
This commit is contained in:
parent
569ea909c4
commit
0dbd1d988e
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user