summaryrefslogtreecommitdiffstats
path: root/components/package
diff options
context:
space:
mode:
Diffstat (limited to 'components/package')
-rw-r--r--components/package/contents/ui/MailListView.qml72
1 files changed, 36 insertions, 36 deletions
diff --git a/components/package/contents/ui/MailListView.qml b/components/package/contents/ui/MailListView.qml
index 43b65a18..0066ca6c 100644
--- a/components/package/contents/ui/MailListView.qml
+++ b/components/package/contents/ui/MailListView.qml
@@ -198,7 +198,7 @@ Item {
198 color: mailListDelegate.checked ? Kirigami.Theme.highlightedTextColor : Kirigami.Theme.disabledTextColor 198 color: mailListDelegate.checked ? Kirigami.Theme.highlightedTextColor : Kirigami.Theme.disabledTextColor
199 font.pointSize: 9 199 font.pointSize: 9
200 200
201 visible: mailListDelegate.containsMouse == false 201 //visible: mailListDelegate.containsMouse == false
202 202
203 } 203 }
204 204
@@ -216,41 +216,41 @@ Item {
216 color: mailListDelegate.checked ? Kirigami.Theme.highlightedTextColor : model.unread ? "#1d99f3" : Kirigami.Theme.disabledTextColor 216 color: mailListDelegate.checked ? Kirigami.Theme.highlightedTextColor : model.unread ? "#1d99f3" : Kirigami.Theme.disabledTextColor
217 } 217 }
218 218
219 Row { 219// Row {
220 id: actionButtons 220// id: actionButtons
221 221//
222 anchors { 222// anchors {
223 right: parent.right 223// right: parent.right
224 bottom: parent.bottom 224// bottom: parent.bottom
225 } 225// }
226 226//
227 visible: mailListDelegate.containsMouse == true 227// visible: mailListDelegate.containsMouse == true
228 spacing: Kirigami.Units.smallSpacing 228// spacing: Kirigami.Units.smallSpacing
229 229//
230 Controls.ToolButton { 230// Controls.ToolButton {
231 iconName: "mail-mark-unread" 231// iconName: "mail-mark-unread"
232 enabled: mailController.markAsReadAction.enabled 232// enabled: mailController.markAsReadAction.enabled
233 onClicked: { 233// onClicked: {
234 //mailController.markAsReadAction.execute() 234// //mailController.markAsReadAction.execute()
235 } 235// }
236 } 236// }
237 237//
238 Controls.ToolButton { 238// Controls.ToolButton {
239 iconName: "mail-mark-important" 239// iconName: "mail-mark-important"
240 enabled: mailController.markAsImportantAction.enabled 240// enabled: mailController.markAsImportantAction.enabled
241 onClicked: { 241// onClicked: {
242 //mailController.markAsImportantAction.execute() 242// //mailController.markAsImportantAction.execute()
243 } 243// }
244 } 244// }
245 245//
246 Controls.ToolButton { 246// Controls.ToolButton {
247 iconName: "edit-delete" 247// iconName: "edit-delete"
248 enabled: mailController.moveToTrashAction.enabled 248// enabled: mailController.moveToTrashAction.enabled
249 onClicked: { 249// onClicked: {
250 //mailController.moveToTrashAction.execute() 250// //mailController.moveToTrashAction.execute()
251 } 251// }
252 } 252// }
253 } 253// }
254 } 254 }
255 } 255 }
256 } 256 }