mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
LibGUI: Remove gradient from the default button style.
Buttons actually look nicer without the gradient. :^)
This commit is contained in:
parent
88e77fe3af
commit
9444ed0117
1 changed files with 0 additions and 1 deletions
|
@ -39,7 +39,6 @@ void GStyle::paint_button(Painter& painter, const Rect& rect, GButtonStyle butto
|
|||
} else if (button_style == GButtonStyle::Normal || (button_style == GButtonStyle::CoolBar && hovered)) {
|
||||
// Base
|
||||
painter.fill_rect({ 3, 3, rect.width() - 5, rect.height() - 5 }, button_color);
|
||||
painter.fill_rect_with_gradient({ 2, 2, rect.width() - 3, rect.height() - 3 }, button_color, Color::White);
|
||||
|
||||
// White highlight
|
||||
painter.draw_line({ 1, 1 }, { rect.width() - 2, 1 }, highlight_color);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue