summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-12-22 02:45:25 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-12-22 02:45:25 +0100
commit926c7a89adc206e1e6f4e4f76e9d6340e3a91b7b (patch)
tree2dc99722a0462383e08117ca4e4e36993a73cd7a
parentMake edits replace the previous notification on Linux (diff)
downloadnheko-926c7a89adc206e1e6f4e4f76e9d6340e3a91b7b.tar.xz
Add alternative shortcut to Alt-A for systems, where that is taken already
-rw-r--r--resources/qml/Root.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml

index 2d4f9923..1af03d20 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml
@@ -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() }