fix allow_bold setting
This commit is contained in:
parent
5b171ebc3c
commit
5f42dec963
1
config.h
1
config.h
|
@ -1,5 +1,4 @@
|
|||
static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+()]*";
|
||||
|
||||
static const char *term = "vte-256color";
|
||||
|
||||
// keybindings
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue