summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2021-09-14 19:00:50 +0000
committerGitHub <noreply@github.com>2021-09-14 19:00:50 +0000
commitd6eeaa1c048e037b8ee40b2ee58946fc4bc5281e (patch)
treee855c3f48c696066e2992e2121b3c363b37c6951 /resources
parentAdd workaround for crash on some jdenticon inputs (diff)
parentadd Alt+A keybinding to switch to next room with unread messages (diff)
downloadnheko-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')
-rw-r--r--resources/qml/Root.qml5
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() }