mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-11 09:24:50 +01:00
make library view sort line themable
set line color alpha to 100
This commit is contained in:
parent
c6e56813ef
commit
ec60406f14
@ -101,7 +101,9 @@ void LibraryItemDelegate::paint(QPainter* painter,
|
|||||||
painter->drawText(text_rect, text);
|
painter->drawText(text_rect, text);
|
||||||
|
|
||||||
// Draw the line under the item
|
// 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);
|
line_pen.setWidth(2);
|
||||||
|
|
||||||
painter->setPen(line_pen);
|
painter->setPen(line_pen);
|
||||||
|
Loading…
Reference in New Issue
Block a user