Add alternative shortcut to Alt-A for systems, where that is taken already

This commit is contained in:
Nicolas Werner 2021-12-22 02:45:25 +01:00
parent eb1e54c8df
commit 926c7a89ad
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 3 additions and 1 deletions

View File

@ -145,7 +145,9 @@ Page {
}
Shortcut {
sequence: "Alt+A"
// Add alternative shortcut, because sometimes Alt+A is stolen by the TextEdit
sequences: ["Alt+A", "Ctrl+Shift+A"]
context: Qt.ApplicationShortcut
onActivated: Rooms.nextRoomWithActivity()
}