From 926c7a89adc206e1e6f4e4f76e9d6340e3a91b7b Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 22 Dec 2021 02:45:25 +0100 Subject: [PATCH] Add alternative shortcut to Alt-A for systems, where that is taken already --- resources/qml/Root.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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() }