LibGUI: Tweak colorization of ScrollBar gutter

This commit is contained in:
Andreas Kling 2020-04-23 17:54:10 +02:00
parent 5eb4d0f832
commit 8260cbf7bd
Notes: sideshowbarker 2024-07-19 07:22:20 +09:00

View file

@ -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;