From 2ecbe5dd7154f791b0d00748756eb72c65967534 Mon Sep 17 00:00:00 2001 From: Anders Fimreite Date: Wed, 1 Sep 2021 15:13:07 +0200 Subject: [PATCH] Keyboard Mapper: Better text color for buttons in dark theme When using a dark theme the name of the key does not show up well at all. This is due to it being set with pallete().button_text(), which for dark themes is a light color. As Keyboard Mapper does not follow the system color theme, the text on the keys should not either. --- Userland/Applications/KeyboardMapper/KeyButton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/KeyboardMapper/KeyButton.cpp b/Userland/Applications/KeyboardMapper/KeyButton.cpp index d353fa9050..d96292ed2e 100644 --- a/Userland/Applications/KeyboardMapper/KeyButton.cpp +++ b/Userland/Applications/KeyboardMapper/KeyButton.cpp @@ -40,7 +40,7 @@ void KeyButton::paint_event(GUI::PaintEvent& event) Gfx::IntRect text_rect { 0, 0, font.width(text()), font.glyph_height() }; text_rect.align_within({ cont_rect.x() + 7, cont_rect.y() + 4, cont_rect.width() - 14, cont_rect.height() - 14 }, Gfx::TextAlignment::Center); - painter.draw_text(text_rect, text(), font, Gfx::TextAlignment::Center, palette().button_text(), Gfx::TextElision::Right); + painter.draw_text(text_rect, text(), font, Gfx::TextAlignment::Center, Color::Black, Gfx::TextElision::Right); if (is_focused()) painter.draw_rect(text_rect.inflated(6, 4), palette().focus_outline()); }