From 6c70629a49e7aba5d83958feec98ddceb6cdd6a1 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 10 Mar 2019 00:57:57 +0100 Subject: [PATCH] LibGUI: Make buttons a little bit sharper. --- LibGUI/GStyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GStyle.cpp b/LibGUI/GStyle.cpp index 07a8a0202e..f5dc4eaf6b 100644 --- a/LibGUI/GStyle.cpp +++ b/LibGUI/GStyle.cpp @@ -21,7 +21,7 @@ void GStyle::paint_button(Painter& painter, const Rect& rect, GButtonStyle butto Color shadow_color = Color(96, 96, 96); if (button_style == GButtonStyle::Normal) - painter.draw_rect(rect, Color::Black, true); + painter.draw_rect(rect, Color::Black); PainterStateSaver saver(painter); painter.translate(rect.location());