summaryrefslogtreecommitdiffstats
path: root/framework/qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml')
-rw-r--r--framework/qml/MailListView.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index b1378eb4..df8b155b 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -225,12 +225,14 @@ FocusScope {
225 iconName: Kube.Icons.markAsRead 225 iconName: Kube.Icons.markAsRead
226 visible: model.unread 226 visible: model.unread
227 onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsRead, {"mail": model.mail}) 227 onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsRead, {"mail": model.mail})
228 activeFocusOnTab: false
228 } 229 }
229 Kube.IconButton { 230 Kube.IconButton {
230 id: unreadButton 231 id: unreadButton
231 iconName: Kube.Icons.markAsUnread 232 iconName: Kube.Icons.markAsUnread
232 visible: !model.unread 233 visible: !model.unread
233 onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsUnread, {"mail": model.mail}) 234 onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsUnread, {"mail": model.mail})
235 activeFocusOnTab: false
234 } 236 }
235 237
236 Kube.IconButton { 238 Kube.IconButton {
@@ -238,6 +240,7 @@ FocusScope {
238 iconName: Kube.Icons.markImportant 240 iconName: Kube.Icons.markImportant
239 visible: !!model.mail 241 visible: !!model.mail
240 onClicked: Kube.Fabric.postMessage(Kube.Messages.toggleImportant, {"mail": model.mail, "important": model.important}) 242 onClicked: Kube.Fabric.postMessage(Kube.Messages.toggleImportant, {"mail": model.mail, "important": model.important})
243 activeFocusOnTab: false
241 } 244 }
242 245
243 Kube.IconButton { 246 Kube.IconButton {
@@ -245,6 +248,7 @@ FocusScope {
245 iconName: Kube.Icons.moveToTrash 248 iconName: Kube.Icons.moveToTrash
246 visible: !!model.mail 249 visible: !!model.mail
247 onClicked: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": model.mail}) 250 onClicked: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": model.mail})
251 activeFocusOnTab: false
248 } 252 }
249 253
250 Kube.IconButton { 254 Kube.IconButton {
@@ -252,6 +256,7 @@ FocusScope {
252 iconName: Kube.Icons.undo 256 iconName: Kube.Icons.undo
253 visible: !!model.trash 257 visible: !!model.trash
254 onClicked: Kube.Fabric.postMessage(Kube.Messages.restoreFromTrash, {"mail": model.mail}) 258 onClicked: Kube.Fabric.postMessage(Kube.Messages.restoreFromTrash, {"mail": model.mail})
259 activeFocusOnTab: false
255 } 260 }
256 } 261 }
257 } 262 }