From c5d88ff0d8d9259bcfd612353ec0f7c36323362e Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 28 Feb 2019 19:17:08 +0100 Subject: [PATCH] LibGUI: Top line on GStatusBar should be a highlight, not a shadow. --- LibGUI/GStatusBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GStatusBar.cpp b/LibGUI/GStatusBar.cpp index 2712715bde..d8b4970a1c 100644 --- a/LibGUI/GStatusBar.cpp +++ b/LibGUI/GStatusBar.cpp @@ -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); }