Index: src/qml/ElisaMainWindow.qml =================================================================== --- src/qml/ElisaMainWindow.qml +++ src/qml/ElisaMainWindow.qml @@ -42,6 +42,19 @@ property var goBackAction: elisa.action("go_back") + Shortcut { + sequence: "Shift+Right" + onActivated: elisa.audioControl.seek(headerBar.playerControl.position + 10000) + context: Qt.ApplicationShortcut + } + + + Shortcut { + sequence: "Shift+Left" + onActivated: elisa.audioControl.seek(headerBar.playerControl.position - 10000) + context: Qt.ApplicationShortcut + } + Action { shortcut: goBackAction.shortcut onTriggered: contentView.goBack()