summary refs log tree commit diff
path: root/resources/qml/Root.qml
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien+git@xlumurb.eu>2021-09-11 12:00:00 +0000
committerGuillaume Girol <symphorien+git@xlumurb.eu>2021-09-14 12:00:00 +0000
commit82b1cc4e5f5a13793b3347c69292be22292aa82c (patch)
treed0aae6951ad410404e26ca1161165adabd96de4f /resources/qml/Root.qml
parentTranslated using Weblate (Malayalam) (diff)
downloadnheko-82b1cc4e5f5a13793b3347c69292be22292aa82c.tar.xz
add Alt+A keybinding to switch to next room with unread messages
Diffstat (limited to 'resources/qml/Root.qml')
-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()
     }