From 809eae331fcfe79219f5ac5d1f954f9d3e0cedc8 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 11 Aug 2020 21:21:16 -0400 Subject: [PATCH] Fix #3732: hard-to-see flycheck indicators A temporary measure until I've sorted out custom faces for this module. It solves difficult-to-see icons in the flycheck segment on some themes (e.g. doom-molokai). --- modules/ui/modeline/+light.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/modeline/+light.el b/modules/ui/modeline/+light.el index 30262910b..068fcb6b0 100644 --- a/modules/ui/modeline/+light.el +++ b/modules/ui/modeline/+light.el @@ -400,9 +400,9 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with warning info)))) (+modeline-format-icon "check" "" 'success))) - (`running (+modeline-format-icon "access_time" "*" 'font-lock-comment-face "Running...")) + (`running (+modeline-format-icon "access_time" "*" 'mode-line-inactive "Running...")) (`errored (+modeline-format-icon "sim_card_alert" "!" 'error "Errored!")) - (`interrupted (+modeline-format-icon "pause" "!" 'font-lock-comment-face "Interrupted")) + (`interrupted (+modeline-format-icon "pause" "!" 'mode-line-inactive "Interrupted")) (`suspicious (+modeline-format-icon "priority_high" "!" 'error "Suspicious"))))))