diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-30 09:23:16 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-30 09:23:16 +0200 |
commit | 315716d19325710223d5c9e9e7041a2cfa04fd49 (patch) | |
tree | e8a8e3451a2d5e11f5d6b6c8533ee4829cc8e57d /LibGUI/GTableView.cpp | |
parent | 73d0e7cd8fd6c21147cf6fe6ca80859137411245 (diff) | |
download | serenity-315716d19325710223d5c9e9e7041a2cfa04fd49.zip |
GUI: Use Win2K-like "warm gray" color instead of the older colder gray.
Someone suggested this a long time ago and I never got around to it.
So here we go, here's the warm gray! I have to admit I like it better. :^)
Diffstat (limited to 'LibGUI/GTableView.cpp')
-rw-r--r-- | LibGUI/GTableView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GTableView.cpp b/LibGUI/GTableView.cpp index 5b2687261a..5fe0ac8ea9 100644 --- a/LibGUI/GTableView.cpp +++ b/LibGUI/GTableView.cpp @@ -282,7 +282,7 @@ void GTableView::paint_event(GPaintEvent& event) void GTableView::paint_headers(Painter& painter) { int exposed_width = max(content_size().width(), width()); - painter.fill_rect({ 0, 0, exposed_width, header_height() }, Color::LightGray); + painter.fill_rect({ 0, 0, exposed_width, header_height() }, Color::WarmGray); painter.draw_line({ 0, 0 }, { exposed_width - 1, 0 }, Color::White); painter.draw_line({ 0, header_height() - 1 }, { exposed_width - 1, header_height() - 1 }, Color::MidGray); int x_offset = 0; |