Skip to content

Commit ef16825

Browse files
committed
Add some shotcuts for easy navigation (Back and Up)
Related: #29
1 parent 8d2fb7d commit ef16825

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/app/qml/FolderPage.qml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Page {
3232
iconName: "navigation/arrow_back"
3333
name: qsTr("Back")
3434
enabled: folderModel.canGoBack
35+
shortcut: StandardKey.Back
3536
visible: true
3637

3738
onTriggered: folderModel.goBack()
@@ -61,6 +62,11 @@ Page {
6162
enabled: folderModel.model.clipboardUrlsCounter
6263
onTriggered: folderModel.model.paste()
6364
},
65+
Action {
66+
visible: false
67+
shortcut: "Alt+Up"
68+
onTriggered: folderModel.model.cdUp()
69+
},
6470
Action {
6571
iconName: "action/open_in_new"
6672
name: qsTr("Open in Terminal")

0 commit comments

Comments
 (0)