From e10f4d4bb0c8dfa0ec96a41020b469847f3cd456 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 11 Sep 2019 13:20:32 +0200 Subject: [PATCH] Set default color for main.text.history Might be related to https://github.com/profanity-im/profanity/issues/1186 --- src/config/theme.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/theme.c b/src/config/theme.c index ac077b27..b4a46a17 100644 --- a/src/config/theme.c +++ b/src/config/theme.c @@ -73,6 +73,7 @@ theme_init(const char *const theme_name) defaults = g_hash_table_new_full(g_str_hash, g_str_equal, free, free); g_hash_table_insert(defaults, strdup("main.text"), strdup("white")); + g_hash_table_insert(defaults, strdup("main.text.history"), strdup("white")); g_hash_table_insert(defaults, strdup("main.text.me"), strdup("white")); g_hash_table_insert(defaults, strdup("main.text.them"), strdup("white")); g_hash_table_insert(defaults, strdup("main.splash"), strdup("cyan"));