From: Dana Jansens Date: Wed, 2 Apr 2003 04:17:36 +0000 (+0000) Subject: default focus text color for titlebars is black X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=49eea4715faa55a0da670112619f22da6e20f5aa;p=chaz%2Fopenbox default focus text color for titlebars is black --- diff --git a/engines/openbox/obtheme.c b/engines/openbox/obtheme.c index 6362904d..ccd17cc0 100644 --- a/engines/openbox/obtheme.c +++ b/engines/openbox/obtheme.c @@ -345,7 +345,7 @@ gboolean obtheme_load() ob_s_cb_unfocused_color = color_new(0xff, 0xff, 0xff); if (!read_color(db, "window.label.focus.textColor", &ob_s_title_focused_color)) - ob_s_title_focused_color = color_new(0xff, 0xff, 0xff); + ob_s_title_focused_color = color_new(0x0, 0x0, 0x0); if (!read_color(db, "window.label.unfocus.textColor", &ob_s_title_unfocused_color)) ob_s_title_unfocused_color = color_new(0xff, 0xff, 0xff);