From 93e9c10d1894797b5826bbdfcc324f4235c9e193 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 8 Mar 2018 13:41:55 +0100 Subject: Avoid coloring the text blue on blue background. The new messages available info is also irrelevant for the current folder. --- framework/qml/FolderListView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/qml/FolderListView.qml b/framework/qml/FolderListView.qml index a24a9ff6..3a203083 100644 --- a/framework/qml/FolderListView.qml +++ b/framework/qml/FolderListView.qml @@ -54,7 +54,7 @@ Kube.TreeView { } text: styleData.value elide: Qt.ElideRight - color: model.hasNewData ? Kube.Colors.highlightColor : Kube.Colors.viewBackgroundColor + color: (model.hasNewData && !styleData.selected) ? Kube.Colors.highlightColor : Kube.Colors.viewBackgroundColor } } } -- cgit v1.2.3