diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-11 17:53:09 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-11 17:53:09 +0200 |
commit | a767ca53c0c0722223bc6c646776456f5484b31f (patch) | |
tree | 5988befd5eb6082332e5097d99200c4077af0f7b /framework/qml/MailListView.qml | |
parent | 019de72c3517e0c48b1a1bb3043e33be66fdaa61 (diff) | |
download | kube-a767ca53c0c0722223bc6c646776456f5484b31f.tar.gz kube-a767ca53c0c0722223bc6c646776456f5484b31f.zip |
We want that shortcut on non-trash items
Diffstat (limited to 'framework/qml/MailListView.qml')
-rw-r--r-- | framework/qml/MailListView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index 1ffb2971..e0befaf7 100644 --- a/framework/qml/MailListView.qml +++ b/framework/qml/MailListView.qml | |||
@@ -52,7 +52,7 @@ FocusScope { | |||
52 | 52 | ||
53 | Shortcut { | 53 | Shortcut { |
54 | sequence: StandardKey.Delete | 54 | sequence: StandardKey.Delete |
55 | enabled: isTrash | 55 | enabled: !isTrash |
56 | onActivated: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail":currentMail}) | 56 | onActivated: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail":currentMail}) |
57 | } | 57 | } |
58 | 58 | ||