diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-09-11 13:20:32 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-09-11 13:20:32 +0200 |
commit | e10f4d4bb0c8dfa0ec96a41020b469847f3cd456 (patch) | |
tree | 9ee02b151ccf5cef40e717f27dfc150227938e21 | |
parent | aa0f497975db0ca60d5bfd52904bfc95758fc28e (diff) | |
download | profani-tty-e10f4d4bb0c8dfa0ec96a41020b469847f3cd456.tar.gz |
Set default color for main.text.history
Might be related to https://github.com/profanity-im/profanity/issues/1186
-rw-r--r-- | src/config/theme.c | 1 |
1 files changed, 1 insertions, 0 deletions
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")); |