From 00ee35c05a0469f2e96c8068773c21fd86aa8dc6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 26 May 2013 21:06:50 +0530 Subject: [PATCH] Make the lighter color a little less light --- src/qtcurve/style/qtcurve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qtcurve/style/qtcurve.cpp b/src/qtcurve/style/qtcurve.cpp index 276e339e62..2c012ef196 100644 --- a/src/qtcurve/style/qtcurve.cpp +++ b/src/qtcurve/style/qtcurve.cpp @@ -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) &&