diff options
author | Andreas Kling <kling@serenityos.org> | 2020-04-23 17:54:10 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-23 17:54:59 +0200 |
commit | 8260cbf7bdeb62d0b575a6b70bd572509385c149 (patch) | |
tree | 39ddd99ede33731b8364c8bc774716e52bd5fdd4 /Libraries/LibGUI | |
parent | 5eb4d0f832f87767c9740505c3bc2e7841f07fb6 (diff) | |
download | serenity-8260cbf7bdeb62d0b575a6b70bd572509385c149.zip |
LibGUI: Tweak colorization of ScrollBar gutter
Diffstat (limited to 'Libraries/LibGUI')
-rw-r--r-- | Libraries/LibGUI/ScrollBar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |