From 5a52586945da7855de90fbe8dba4ec36f8a2db8d Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 18 Dec 2012 09:36:12 +0100 Subject: [PATCH] * Make sure we paint white text on covers. --- src/libtomahawk/playlist/GridItemDelegate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/playlist/GridItemDelegate.cpp b/src/libtomahawk/playlist/GridItemDelegate.cpp index 0a5d174d3..6f45e5ac4 100644 --- a/src/libtomahawk/playlist/GridItemDelegate.cpp +++ b/src/libtomahawk/playlist/GridItemDelegate.cpp @@ -194,9 +194,9 @@ GridItemDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, painter->drawRect( gradientRect ); painter->restore(); - painter->setPen( opt.palette.color( QPalette::HighlightedText ) ); + painter->setPen( Qt::white ); - QRect textRect = option.rect.adjusted( 6, option.rect.height() - frameHeight, -4, -6 ); + QRect textRect = option.rect.adjusted( 6, option.rect.height() - frameHeight, -6, -6 ); bool oneLiner = false; if ( bottom.isEmpty() ) oneLiner = true;