diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-26 18:04:42 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-26 18:04:42 +0200 |
commit | bd6939e3b37ab7e8a1d72ac79fdaee525419964d (patch) | |
tree | e2ec9dcc55d840d6c48a7c7f510737976c25984c /views/conversation | |
parent | 9a4532647cd470a059a662f30471da307ef04ed6 (diff) | |
download | kube-bd6939e3b37ab7e8a1d72ac79fdaee525419964d.tar.gz kube-bd6939e3b37ab7e8a1d72ac79fdaee525419964d.zip |
Replace icons with hotkeys during keyboard focus.
The icons are distracting and not particularly useful when going through
the list. And the hotkeys allow for keyboard interaction anyways.
Diffstat (limited to 'views/conversation')
-rw-r--r-- | views/conversation/qml/View.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/conversation/qml/View.qml b/views/conversation/qml/View.qml index 1ca0348f..44208fa5 100644 --- a/views/conversation/qml/View.qml +++ b/views/conversation/qml/View.qml | |||
@@ -52,6 +52,8 @@ Kube.View { | |||
52 | ListElement { description: qsTr("Compose new message:"); shortcut: "c" } | 52 | ListElement { description: qsTr("Compose new message:"); shortcut: "c" } |
53 | ListElement { description: qsTr("Reply to the currently focused message:"); shortcut: "r" } | 53 | ListElement { description: qsTr("Reply to the currently focused message:"); shortcut: "r" } |
54 | ListElement { description: qsTr("Delete the currently focused message:"); shortcut: "d" } | 54 | ListElement { description: qsTr("Delete the currently focused message:"); shortcut: "d" } |
55 | ListElement { description: qsTr("Mark the currently focused message as important:"); shortcut: "i" } | ||
56 | ListElement { description: qsTr("Mark the currently focused message as unread:"); shortcut: "u" } | ||
55 | ListElement { description: qsTr("Show this help text:"); shortcut: "?" } | 57 | ListElement { description: qsTr("Show this help text:"); shortcut: "?" } |
56 | } | 58 | } |
57 | } | 59 | } |