summaryrefslogtreecommitdiffstats
path: root/framework/qml/MailListView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/MailListView.qml')
-rw-r--r--framework/qml/MailListView.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index eb124102..ff72a59c 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -60,6 +60,16 @@ FocusScope {
60 text: qsTr("Nothing here...") 60 text: qsTr("Nothing here...")
61 } 61 }
62 62
63 Kube.Listener {
64 filter: Kube.Messages.nextConversation
65 onMessageReceived: listView.incrementCurrentIndex()
66 }
67
68 Kube.Listener {
69 filter: Kube.Messages.previousConversation
70 onMessageReceived: listView.decrementCurrentIndex()
71 }
72
63 ColumnLayout { 73 ColumnLayout {
64 anchors.fill: parent 74 anchors.fill: parent
65 75