diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-23 12:16:08 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-23 14:28:15 +0200 |
commit | e0604f713649186507db37be54cc3aaadcd99663 (patch) | |
tree | 66b796b19b3943f0ecdbb0ff0720a6d0bd36ae0f /views/conversation/qml/View.qml | |
parent | 36b2a1ac66ce66708904870b9458512bbaea4a03 (diff) | |
download | kube-e0604f713649186507db37be54cc3aaadcd99663.tar.gz kube-e0604f713649186507db37be54cc3aaadcd99663.zip |
Search view updates
Diffstat (limited to 'views/conversation/qml/View.qml')
-rw-r--r-- | views/conversation/qml/View.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/views/conversation/qml/View.qml b/views/conversation/qml/View.qml index 7463d5e2..1ca0348f 100644 --- a/views/conversation/qml/View.qml +++ b/views/conversation/qml/View.qml | |||
@@ -200,10 +200,13 @@ Kube.View { | |||
200 | Layout.fillWidth: true | 200 | Layout.fillWidth: true |
201 | Layout.fillHeight: parent.height | 201 | Layout.fillHeight: parent.height |
202 | activeFocusOnTab: true | 202 | activeFocusOnTab: true |
203 | model: Kube.MailListModel { | ||
204 | id: mailViewModel | ||
205 | } | ||
203 | Kube.Listener { | 206 | Kube.Listener { |
204 | filter: Kube.Messages.mailSelection | 207 | filter: Kube.Messages.mailSelection |
205 | onMessageReceived: { | 208 | onMessageReceived: { |
206 | mailView.mail = message.mail | 209 | mailViewModel.mail = message.mail |
207 | } | 210 | } |
208 | } | 211 | } |
209 | 212 | ||