summaryrefslogtreecommitdiffstats
path: root/framework/qml/Messages.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-04-04 13:11:22 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-04-04 13:11:22 +0200
commitab3d462590e29488e2f5cff8338745347ff80742 (patch)
tree34c0f26ca61e88709106851a89f312277a5f9e27 /framework/qml/Messages.qml
parent974b53f9df94d70a7f04080e181704111c2f294a (diff)
downloadkube-ab3d462590e29488e2f5cff8338745347ff80742.tar.gz
kube-ab3d462590e29488e2f5cff8338745347ff80742.zip
Keyboard navigation in conversation view.
One problem with the current setting is that j/k is used for scrolling in the conversation view, but for moving to the next mail in the maillist view. To normalize this we could be using j/k for moving to the next conversation instead, and n/p to go to the next/previous mail, which is also what gmail does.
Diffstat (limited to 'framework/qml/Messages.qml')
-rw-r--r--framework/qml/Messages.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/qml/Messages.qml b/framework/qml/Messages.qml
index 35aa750a..a3f6ef00 100644
--- a/framework/qml/Messages.qml
+++ b/framework/qml/Messages.qml
@@ -51,5 +51,8 @@ Item {
51 property string sendOutbox: "sendOutbox" 51 property string sendOutbox: "sendOutbox"
52 52
53 property string componentDone: "done" 53 property string componentDone: "done"
54
55 property string nextConversation: "nextConversation"
56 property string previousConversation: "previousConversation"
54} 57}
55 58