From c1e8590a401f785cc700b946224f554b6e1c6aeb Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 24 Dec 2019 02:38:30 +0100 Subject: [PATCH] LibDraw: Use SystemColor::ThreedHighlight everywhere in StylePainter --- Libraries/LibDraw/StylePainter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibDraw/StylePainter.cpp b/Libraries/LibDraw/StylePainter.cpp index 9b57a6bf38..2d93fa4f3f 100644 --- a/Libraries/LibDraw/StylePainter.cpp +++ b/Libraries/LibDraw/StylePainter.cpp @@ -93,7 +93,7 @@ void StylePainter::paint_button(Painter& painter, const Rect& rect, ButtonStyle return paint_button_new(painter, rect, pressed, checked, hovered, enabled); Color button_color = SystemColor::Button; - Color highlight_color = Color::White; + Color highlight_color = SystemColor::ThreedHighlight; Color shadow_color = Color(96, 96, 96); if (button_style == ButtonStyle::CoolBar && !enabled)