diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2021-09-14 19:00:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 19:00:50 +0000 |
commit | d6eeaa1c048e037b8ee40b2ee58946fc4bc5281e (patch) | |
tree | e855c3f48c696066e2992e2121b3c363b37c6951 /resources/qml | |
parent | Add workaround for crash on some jdenticon inputs (diff) | |
parent | add Alt+A keybinding to switch to next room with unread messages (diff) | |
download | nheko-d6eeaa1c048e037b8ee40b2ee58946fc4bc5281e.tar.xz |
Merge pull request #721 from symphorien/hotlist
Implement a binding to go to a room with unread messages
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/Root.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml index cc7d32ea..4207f35b 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml @@ -121,6 +121,11 @@ Page { } Shortcut { + sequence: "Alt+A" + onActivated: Rooms.nextRoomWithActivity() + } + + Shortcut { sequence: "Ctrl+Down" onActivated: Rooms.nextRoom() } |