summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-03-08 13:41:55 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-03-08 13:41:55 +0100
commit93e9c10d1894797b5826bbdfcc324f4235c9e193 (patch)
tree7410d3f342b400836452c3aa6127c82d82a0b7ea /framework
parent4f006ff552a5ecf4550554d53ece8f4e9c1b9dc0 (diff)
downloadkube-93e9c10d1894797b5826bbdfcc324f4235c9e193.tar.gz
kube-93e9c10d1894797b5826bbdfcc324f4235c9e193.zip
Avoid coloring the text blue on blue background.
The new messages available info is also irrelevant for the current folder.
Diffstat (limited to 'framework')
-rw-r--r--framework/qml/FolderListView.qml2
1 files changed, 1 insertions, 1 deletions
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 {
54 } 54 }
55 text: styleData.value 55 text: styleData.value
56 elide: Qt.ElideRight 56 elide: Qt.ElideRight
57 color: model.hasNewData ? Kube.Colors.highlightColor : Kube.Colors.viewBackgroundColor 57 color: (model.hasNewData && !styleData.selected) ? Kube.Colors.highlightColor : Kube.Colors.viewBackgroundColor
58 } 58 }
59 } 59 }
60 } 60 }