diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-05-28 23:25:57 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-05-28 23:25:57 +0200 |
commit | 03d30a2abc6a2c9c9e1eaecc5a611b70e3041066 (patch) | |
tree | 341669d68e86a79cc9604542d248ad12ce7f1a2c /resources/qml/Root.qml | |
parent | Move currentRoom/timeline handling to roomlist (diff) | |
download | nheko-03d30a2abc6a2c9c9e1eaecc5a611b70e3041066.tar.xz |
Delete old room list
Diffstat (limited to 'resources/qml/Root.qml')
-rw-r--r-- | resources/qml/Root.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml index a8b6fa52..c23ab97d 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml @@ -72,6 +72,15 @@ Page { } } + Shortcut { + sequence: "Ctrl+Down" + onActivated: Rooms.nextRoom(); + } + Shortcut { + sequence: "Ctrl+Up" + onActivated: Rooms.previousRoom(); + } + Component { id: deviceVerificationDialog |