diff options
author | Guillaume Girol <symphorien+git@xlumurb.eu> | 2021-09-11 12:00:00 +0000 |
---|---|---|
committer | Guillaume Girol <symphorien+git@xlumurb.eu> | 2021-09-14 12:00:00 +0000 |
commit | 82b1cc4e5f5a13793b3347c69292be22292aa82c (patch) | |
tree | d0aae6951ad410404e26ca1161165adabd96de4f /resources/qml | |
parent | Translated using Weblate (Malayalam) (diff) | |
download | nheko-82b1cc4e5f5a13793b3347c69292be22292aa82c.tar.xz |
add Alt+A keybinding to switch to next 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() } |