diff options
-rw-r--r-- | framework/qml/MailListView.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index fe041d58..4cd4a19f 100644 --- a/framework/qml/MailListView.qml +++ b/framework/qml/MailListView.qml | |||
@@ -149,11 +149,18 @@ FocusScope { | |||
149 | } | 149 | } |
150 | property color unreadColor: (model.unread && !delegateRoot.highlighted) ? Kube.Colors.highlightColor : delegateRoot.textColor | 150 | property color unreadColor: (model.unread && !delegateRoot.highlighted) ? Kube.Colors.highlightColor : delegateRoot.textColor |
151 | 151 | ||
152 | Kube.CheckBox { | ||
153 | id: checkBox | ||
154 | |||
155 | anchors.verticalCenter: parent.verticalCenter | ||
156 | visible: (checked || delegateRoot.hovered) && !mouseArea.drag.active | ||
157 | } | ||
158 | |||
152 | Column { | 159 | Column { |
153 | anchors { | 160 | anchors { |
154 | verticalCenter: parent.verticalCenter | 161 | verticalCenter: parent.verticalCenter |
155 | left: parent.left | 162 | left: parent.left |
156 | leftMargin: Kube.Units.largeSpacing | 163 | leftMargin: checkBox.width + Kube.Units.smallSpacing |
157 | } | 164 | } |
158 | 165 | ||
159 | Kube.Label{ | 166 | Kube.Label{ |