fix allow_bold setting

This commit is contained in:
Daniel Micay 2012-06-08 12:27:16 -04:00
parent 5b171ebc3c
commit 5f42dec963
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+()]*";
static const char *term = "vte-256color";
// keybindings

View File

@ -285,7 +285,7 @@ static void load_config(GtkWindow *window, VteTerminal *vte,
vte_terminal_set_visible_bell(vte, cfgbool);
if (get_config_boolean(config, "options", "mouse_autohide", &cfgbool))
vte_terminal_set_mouse_autohide(vte, cfgbool);
if (get_config_boolean(config, "options", "bold_allowed", &cfgbool))
if (get_config_boolean(config, "options", "allow_bold", &cfgbool))
vte_terminal_set_allow_bold(vte, cfgbool);
if (get_config_boolean(config, "options", "dynamic_title", &cfgbool))
*dynamic_title = cfgbool;