diff options
Diffstat (limited to 'framework/qml/ConversationView.qml')
-rw-r--r-- | framework/qml/ConversationView.qml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/framework/qml/ConversationView.qml b/framework/qml/ConversationView.qml index f59704d0..5fed1810 100644 --- a/framework/qml/ConversationView.qml +++ b/framework/qml/ConversationView.qml | |||
@@ -199,12 +199,8 @@ Rectangle { | |||
199 | anchors.fill: parent | 199 | anchors.fill: parent |
200 | enabled: parent.enabled | 200 | enabled: parent.enabled |
201 | hoverEnabled: true | 201 | hoverEnabled: true |
202 | onEntered: { | 202 | onEntered: root.currentIndex = index |
203 | root.currentIndex = index | 203 | onClicked: root.currentIndex = index |
204 | } | ||
205 | onClicked: { | ||
206 | root.currentIndex = index | ||
207 | } | ||
208 | } | 204 | } |
209 | 205 | ||
210 | MailViewer { | 206 | MailViewer { |
@@ -224,6 +220,7 @@ Rectangle { | |||
224 | draft: model.draft | 220 | draft: model.draft |
225 | sent: model.sent | 221 | sent: model.sent |
226 | incomplete: model.incomplete | 222 | incomplete: model.incomplete |
223 | current: isCurrent | ||
227 | } | 224 | } |
228 | } | 225 | } |
229 | } | 226 | } |