From 8260cbf7bdeb62d0b575a6b70bd572509385c149 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 23 Apr 2020 17:54:10 +0200 Subject: [PATCH] LibGUI: Tweak colorization of ScrollBar gutter --- Libraries/LibGUI/ScrollBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/ScrollBar.cpp b/Libraries/LibGUI/ScrollBar.cpp index 0f217ce1ae..6fa0c86926 100644 --- a/Libraries/LibGUI/ScrollBar.cpp +++ b/Libraries/LibGUI/ScrollBar.cpp @@ -220,7 +220,7 @@ void ScrollBar::paint_event(PaintEvent& event) Painter painter(*this); painter.add_clip_rect(event.rect()); - painter.fill_rect(rect(), palette().button().lightened()); + painter.fill_rect(rect(), palette().button().lightened(1.1f)); bool decrement_pressed = m_automatic_scrolling_direction == AutomaticScrollingDirection::Decrement; bool increment_pressed = m_automatic_scrolling_direction == AutomaticScrollingDirection::Increment;