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() }