diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/qml/MailListView.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index d82571ec..3569b0c3 100644 --- a/framework/qml/MailListView.qml +++ b/framework/qml/MailListView.qml | |||
@@ -284,6 +284,7 @@ FocusScope { | |||
284 | visible: model.unread | 284 | visible: model.unread |
285 | onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsRead, {"mail": model.mail}) | 285 | onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsRead, {"mail": model.mail}) |
286 | activeFocusOnTab: false | 286 | activeFocusOnTab: false |
287 | tooltip: qsTr("Mark as read") | ||
287 | } | 288 | } |
288 | Kube.IconButton { | 289 | Kube.IconButton { |
289 | id: unreadButton | 290 | id: unreadButton |
@@ -291,6 +292,7 @@ FocusScope { | |||
291 | visible: !model.unread | 292 | visible: !model.unread |
292 | onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsUnread, {"mail": model.mail}) | 293 | onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsUnread, {"mail": model.mail}) |
293 | activeFocusOnTab: false | 294 | activeFocusOnTab: false |
295 | tooltip: qsTr("Mark as unread") | ||
294 | } | 296 | } |
295 | 297 | ||
296 | Kube.IconButton { | 298 | Kube.IconButton { |
@@ -299,6 +301,7 @@ FocusScope { | |||
299 | visible: !!model.mail | 301 | visible: !!model.mail |
300 | onClicked: Kube.Fabric.postMessage(Kube.Messages.setImportant, {"mail": model.mail, "important": !model.important}) | 302 | onClicked: Kube.Fabric.postMessage(Kube.Messages.setImportant, {"mail": model.mail, "important": !model.important}) |
301 | activeFocusOnTab: false | 303 | activeFocusOnTab: false |
304 | tooltip: qsTr("Mark as important") | ||
302 | } | 305 | } |
303 | 306 | ||
304 | Kube.IconButton { | 307 | Kube.IconButton { |
@@ -308,6 +311,7 @@ FocusScope { | |||
308 | visible: !!model.mail | 311 | visible: !!model.mail |
309 | onClicked: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": model.mail}) | 312 | onClicked: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": model.mail}) |
310 | activeFocusOnTab: false | 313 | activeFocusOnTab: false |
314 | tooltip: qsTr("Move to trash") | ||
311 | } | 315 | } |
312 | 316 | ||
313 | Kube.IconButton { | 317 | Kube.IconButton { |
@@ -316,6 +320,7 @@ FocusScope { | |||
316 | visible: !!model.trash | 320 | visible: !!model.trash |
317 | onClicked: Kube.Fabric.postMessage(Kube.Messages.restoreFromTrash, {"mail": model.mail}) | 321 | onClicked: Kube.Fabric.postMessage(Kube.Messages.restoreFromTrash, {"mail": model.mail}) |
318 | activeFocusOnTab: false | 322 | activeFocusOnTab: false |
323 | tooltip: qsTr("Restore from trash") | ||
319 | } | 324 | } |
320 | } | 325 | } |
321 | } | 326 | } |