From f0ff025c1bb6a1e3fd83072f00c2dc42a0701f46 Mon Sep 17 00:00:00 2001 From: Simon Gomizelj Date: Sat, 24 Aug 2013 12:20:01 -0400 Subject: [PATCH] set bold colour to foreground too just in case Fixes #118 --- termite.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/termite.cc b/termite.cc index 03ffd6f..3ff7680 100644 --- a/termite.cc +++ b/termite.cc @@ -1107,6 +1107,7 @@ static void load_theme(GtkWindow *window, VteTerminal *vte, GKeyFile *config, hi vte_terminal_set_colors(vte, nullptr, nullptr, palette.data(), palette.size()); if (auto color = get_config_color(config, "colors", "foreground")) { vte_terminal_set_color_foreground(vte, &*color); + vte_terminal_set_color_bold(vte, &*color); } if (auto color = get_config_color(config, "colors", "foreground_bold")) { vte_terminal_set_color_bold(vte, &*color);