From fdf1ddc61a251443efae1266ebd86dfebb39e744 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 16 Apr 2013 10:59:23 +0200 Subject: [PATCH] * Fixed foreground color. --- src/sourcetree/SourceDelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sourcetree/SourceDelegate.cpp b/src/sourcetree/SourceDelegate.cpp index f6ee8179c..244d70048 100644 --- a/src/sourcetree/SourceDelegate.cpp +++ b/src/sourcetree/SourceDelegate.cpp @@ -235,7 +235,7 @@ SourceDelegate::paintCollection( QPainter* painter, const QStyleOptionViewItem& painter->drawText( textRect, text, to ); } - QColor descColor = option.palette.color( QPalette::HighlightedText ).lighter( 220 ); + QColor descColor = option.palette.color( QPalette::Text ).lighter( 220 ); if ( type == SourcesModel::ScriptCollection && //you cannot select a non-script collection anyway option.state.testFlag( QStyle::State_Selected ) ) {