From 35b0dc5e0ae0e4be9c22c367506f740284e10362 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Fri, 12 Mar 2021 21:05:54 +0100 Subject: [PATCH] Use correct color when resetting the palette The underline color has its own default value, separate from the foreground color one. --- lemonbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonbar.c b/lemonbar.c index 56ec177..3cacd3d 100644 --- a/lemonbar.c +++ b/lemonbar.c @@ -521,7 +521,7 @@ parse (char *text) // Reset the default color set bgc = dbgc; fgc = dfgc; - ugc = fgc; + ugc = dugc; update_gc(); // Reset the default attributes attrs = 0;