From 2b10824d93f9a727745aa4dd31c650a4ba1df847 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 26 Jul 2017 14:09:12 -0600 Subject: Removed the background color for the buttons again since we have a highlight again --- framework/qml/MailListView.qml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index d4e0672b..fe041d58 100644 --- a/framework/qml/MailListView.qml +++ b/framework/qml/MailListView.qml @@ -215,16 +215,12 @@ FocusScope { Kube.IconButton { id: readButton iconName: Kube.Icons.markAsRead - //FIXME workaround for invisble icon, remove color again - color: Kube.Colors.textColor visible: model.unread onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsRead, {"mail": model.mail}) } Kube.IconButton { id: unreadButton iconName: Kube.Icons.markAsUnread - //FIXME workaround for invisble icon, remove color again - color: Kube.Colors.textColor visible: !model.unread onClicked: Kube.Fabric.postMessage(Kube.Messages.markAsUnread, {"mail": model.mail}) } @@ -232,8 +228,6 @@ FocusScope { Kube.IconButton { id: importantButton iconName: Kube.Icons.markImportant - //FIXME workaround for invisble icon, remove color again - color: Kube.Colors.textColor visible: !!model.mail onClicked: Kube.Fabric.postMessage(Kube.Messages.toggleImportant, {"mail": model.mail, "important": model.important}) } @@ -241,8 +235,6 @@ FocusScope { Kube.IconButton { id: deleteButton iconName: Kube.Icons.moveToTrash - //FIXME workaround for invisble icon, remove color again - color: Kube.Colors.textColor visible: !!model.mail onClicked: Kube.Fabric.postMessage(Kube.Messages.moveToTrash, {"mail": model.mail}) } @@ -250,8 +242,6 @@ FocusScope { Kube.IconButton { id: restoreButton iconName: Kube.Icons.undo - //FIXME workaround for invisble icon, remove color again - color: Kube.Colors.textColor visible: !!model.trash onClicked: Kube.Fabric.postMessage(Kube.Messages.restoreFromTrash, {"mail": model.mail}) } -- cgit v1.2.3