diff options
Diffstat (limited to 'framework/qml/ConversationView.qml')
-rw-r--r-- | framework/qml/ConversationView.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/framework/qml/ConversationView.qml b/framework/qml/ConversationView.qml index 29711044..8c6e2d38 100644 --- a/framework/qml/ConversationView.qml +++ b/framework/qml/ConversationView.qml | |||
@@ -186,6 +186,18 @@ Rectangle { | |||
186 | height: sheet.height + Kube.Units.gridUnit | 186 | height: sheet.height + Kube.Units.gridUnit |
187 | width: parent.width | 187 | width: parent.width |
188 | 188 | ||
189 | MouseArea { | ||
190 | anchors.fill: parent | ||
191 | enabled: parent.enabled | ||
192 | hoverEnabled: true | ||
193 | onEntered: { | ||
194 | root.currentIndex = index | ||
195 | } | ||
196 | onClicked: { | ||
197 | root.currentIndex = index | ||
198 | } | ||
199 | } | ||
200 | |||
189 | Rectangle { | 201 | Rectangle { |
190 | id: sheet | 202 | id: sheet |
191 | anchors.centerIn: parent | 203 | anchors.centerIn: parent |