mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-20 21:36:22 +01:00
Make the lighter color a little less light
This commit is contained in:
parent
7495fd3dd6
commit
00ee35c05a
1 changed files with 1 additions and 1 deletions
|
|
@ -5255,7 +5255,7 @@ void Style::drawPrimitive(PrimitiveElement element, const QStyleOption *option,
|
|||
if (color.lightness() > 128)
|
||||
color = color.darker(widget->property("highlight_current_item").toInt());
|
||||
else
|
||||
color = color.lighter();
|
||||
color = color.lighter(135);
|
||||
}
|
||||
|
||||
bool square((opts.square&SQUARE_LISTVIEW_SELECTION) &&
|
||||
|
|
|
|||
Loading…
Reference in a new issue