1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 20:35:06 +00:00

LibGUI: Top line on GStatusBar should be a highlight, not a shadow.

This commit is contained in:
Andreas Kling 2019-02-28 19:17:08 +01:00
parent fd428d6ed3
commit c5d88ff0d8

View file

@ -33,5 +33,5 @@ void GStatusBar::paint_event(GPaintEvent& event)
Painter painter(*this);
painter.set_clip_rect(event.rect());
painter.fill_rect({ 0, 1, width(), height() - 1 }, Color::LightGray);
painter.draw_line({ 0, 0 }, { width() - 1, 0 }, Color::DarkGray);
painter.draw_line({ 0, 0 }, { width() - 1, 0 }, Color::White);
}