From 925c9973fa8232de239d37f1790b1d782dfa3bb4 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 2 Mar 2012 21:26:47 +0100 Subject: [PATCH] Check for the correct name. --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index cf7f8db..b668cfb 100644 --- a/config.c +++ b/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));