summaryrefslogtreecommitdiffstats
path: root/framework/qml/FolderListView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/FolderListView.qml')
-rw-r--r--framework/qml/FolderListView.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/qml/FolderListView.qml b/framework/qml/FolderListView.qml
index 3a203083..221ec31c 100644
--- a/framework/qml/FolderListView.qml
+++ b/framework/qml/FolderListView.qml
@@ -27,6 +27,16 @@ Kube.TreeView {
27 id: root 27 id: root
28 property variant accountId 28 property variant accountId
29 29
30 Kube.Listener {
31 filter: Kube.Messages.selectNextFolder
32 onMessageReceived: root.selectNext()
33 }
34
35 Kube.Listener {
36 filter: Kube.Messages.selectPreviousFolder
37 onMessageReceived: root.selectPrevious()
38 }
39
30 Controls1.TableViewColumn { 40 Controls1.TableViewColumn {
31 title: "Name" 41 title: "Name"
32 role: "name" 42 role: "name"