mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-30 16:54:57 +01:00
Check for the correct name.
This commit is contained in:
parent
557f968875
commit
925c9973fa
1 changed files with 1 additions and 1 deletions
2
config.c
2
config.c
|
@ -26,7 +26,7 @@ cb_color_change(girara_session_t* session, const char* name, girara_setting_type
|
|||
char* string_value = (char*) value;
|
||||
if (g_strcmp0(name, "highlight-color") == 0) {
|
||||
gdk_color_parse(string_value, &(zathura->ui.colors.highlight_color));
|
||||
} else if (g_strcmp0(name, "highlight-active-active") == 0) {
|
||||
} else if (g_strcmp0(name, "highlight-active-color") == 0) {
|
||||
gdk_color_parse(string_value, &(zathura->ui.colors.highlight_color_active));
|
||||
} else if (g_strcmp0(name, "recolor-darkcolor") == 0) {
|
||||
gdk_color_parse(string_value, &(zathura->ui.colors.recolor_dark_color));
|
||||
|
|
Loading…
Reference in a new issue