diff options
Diffstat (limited to 'views/conversation')
-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 | ||