summaryrefslogtreecommitdiffstats
path: root/framework/qml/ConversationView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/ConversationView.qml')
-rw-r--r--framework/qml/ConversationView.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/qml/ConversationView.qml b/framework/qml/ConversationView.qml
index fc239d40..4df7dfa0 100644
--- a/framework/qml/ConversationView.qml
+++ b/framework/qml/ConversationView.qml
@@ -87,9 +87,11 @@ FocusScope {
87 } 87 }
88 88
89 Keys.onPressed: { 89 Keys.onPressed: {
90 //Not implemented as a shortcut because we want it only to apply if we have the focus
90 if (event.text == "d") { 91 if (event.text == "d") {
91 //Not implemented as a shortcut because we want it only to apply if we have the focus
92 Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": listView.currentItem.currentData.mail}) 92 Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": listView.currentItem.currentData.mail})
93 } else if (event.text == "r") {
94 Kube.Fabric.postMessage(Kube.Messages.reply, {"mail": listView.currentItem.currentData.mail})
93 } 95 }
94 } 96 }
95 97