set bold colour to foreground too just in case

Fixes #118
This commit is contained in:
Simon Gomizelj 2013-08-24 12:20:01 -04:00
parent 72f51a5be1
commit f0ff025c1b
1 changed files with 1 additions and 0 deletions

View File

@ -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);