From 3b093553e13bce306a21af065ae5a66fe8359780 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 10 Dec 2020 15:07:55 +0100 Subject: [PATCH] Set default color for trackbar Fix https://github.com/profanity-im/profanity/issues/1453 --- src/config/theme.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/theme.c b/src/config/theme.c index 14e9ba1f..1869286d 100644 --- a/src/config/theme.c +++ b/src/config/theme.c @@ -86,6 +86,7 @@ theme_init(const char* const theme_name) g_hash_table_insert(defaults, strdup("main.text.them"), strdup("default")); g_hash_table_insert(defaults, strdup("main.splash"), strdup("cyan")); g_hash_table_insert(defaults, strdup("main.help.header"), strdup("default")); + g_hash_table_insert(defaults, strdup("main.trackbar"), strdup("default")); g_hash_table_insert(defaults, strdup("error"), strdup("red")); g_hash_table_insert(defaults, strdup("incoming"), strdup("yellow")); g_hash_table_insert(defaults, strdup("mention"), strdup("yellow"));