Merge pull request #5050 from narunlifescience/master

make library view sort line themable
This commit is contained in:
ArnaudBienner 2015-09-22 10:19:57 +02:00
commit cc1b504bec
1 changed files with 3 additions and 1 deletions

View File

@ -101,7 +101,9 @@ void LibraryItemDelegate::paint(QPainter* painter,
painter->drawText(text_rect, text);
// Draw the line under the item
QPen line_pen(opt.palette.color(QPalette::Dark));
QColor line_color = opt.palette.color(QPalette::Text);
line_color.setAlpha(100);
QPen line_pen(line_color);
line_pen.setWidth(2);
painter->setPen(line_pen);