diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-23 14:47:49 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-23 14:47:49 +0200 |
commit | c1ca732bafc60f5c140ef5516e32bd46503bf68c (patch) | |
tree | 2239c5c134b7a9c6133e3429d9ff6e0d57b195bf /framework/qml/ConversationView.qml | |
parent | ac5b95cb2b9d307d7e7207e947fd7dc3f53503cf (diff) | |
download | kube-c1ca732bafc60f5c140ef5516e32bd46503bf68c.tar.gz kube-c1ca732bafc60f5c140ef5516e32bd46503bf68c.zip |
A simple debug view
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 | } |