summaryrefslogtreecommitdiffstats
path: root/framework/qml/MailListView.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-26 21:42:42 -0600
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-27 11:01:21 -0600
commit04aeb70a899a1ea2ad81ac579b310dcb1052a1cc (patch)
tree748e6b292332d88e066aabf2a4c99b4896f022d8 /framework/qml/MailListView.qml
parentd54a3cbd11fb861f2547d82cbf618ba5f8b2a9e0 (diff)
downloadkube-04aeb70a899a1ea2ad81ac579b310dcb1052a1cc.tar.gz
kube-04aeb70a899a1ea2ad81ac579b310dcb1052a1cc.zip
Don't include the maillist buttons in keyboard navigation
Diffstat (limited to 'framework/qml/MailListView.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 }