summaryrefslogtreecommitdiffstats
path: root/framework/qml/MailListView.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-07-27 19:45:57 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-07-27 19:45:57 +0200
commit7c2f37154943aa285a12603e3f8e7297df640f86 (patch)
treedef014684a8d57ba46be2b65e7fde4416e94c650 /framework/qml/MailListView.qml
parenta08e9b4eeadd3678845927de05911893fac00fcd (diff)
downloadkube-7c2f37154943aa285a12603e3f8e7297df640f86.tar.gz
kube-7c2f37154943aa285a12603e3f8e7297df640f86.zip
no checkbox because batch editing is not a priority for now
Diffstat (limited to 'framework/qml/MailListView.qml')
-rw-r--r--framework/qml/MailListView.qml17
1 files changed, 9 insertions, 8 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index 70c258e4..5b97cd21 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -151,19 +151,20 @@ FocusScope {
151 } 151 }
152 property color unreadColor: (model.unread && !delegateRoot.highlighted) ? Kube.Colors.highlightColor : delegateRoot.textColor 152 property color unreadColor: (model.unread && !delegateRoot.highlighted) ? Kube.Colors.highlightColor : delegateRoot.textColor
153 153
154 Kube.CheckBox { 154//TODO batch editing
155 id: checkBox 155// Kube.CheckBox {
156 156// id: checkBox
157 anchors.verticalCenter: parent.verticalCenter 157//
158 visible: (checked || delegateRoot.hovered) && !mouseArea.drag.active 158// anchors.verticalCenter: parent.verticalCenter
159 opacity: 0.9 159// visible: (checked || delegateRoot.hovered) && !mouseArea.drag.active
160 } 160// opacity: 0.9
161// }
161 162
162 Column { 163 Column {
163 anchors { 164 anchors {
164 verticalCenter: parent.verticalCenter 165 verticalCenter: parent.verticalCenter
165 left: parent.left 166 left: parent.left
166 leftMargin: checkBox.width + Kube.Units.smallSpacing 167 leftMargin: Kube.Units.largeSpacing // + checkBox.width
167 } 168 }
168 169
169 Kube.Label{ 170 Kube.Label{