1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-15 11:15:59 +01:00

Fix the colour of the dividers

This commit is contained in:
David Sansome 2010-02-21 22:28:19 +00:00
parent 042c37ab40
commit 4c0e8fb6a9

View File

@ -36,7 +36,7 @@ void LibraryItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &o
painter->drawText(text_rect, text);
//Draw the line under the item
QPen line_pen(opt.palette.color(QPalette::Disabled, QPalette::Text).lighter());
QPen line_pen(opt.palette.color(QPalette::Dark));
line_pen.setWidth(2);
painter->setPen(line_pen);