don't use the title separator color for shaded windows

This commit is contained in:
Dana Jansens 2007-06-03 19:48:43 +00:00
parent 3853b19f0e
commit 8861b44cc8

View file

@ -95,9 +95,11 @@ void framerender_frame(ObFrame *self)
XSetWindowBackground(ob_display, self->rgripbottom, px);
XClearWindow(ob_display, self->rgripbottom);
px = (self->focused ?
RrColorPixel(ob_rr_theme->title_separator_focused_color) :
RrColorPixel(ob_rr_theme->title_separator_unfocused_color));
/* don't use the separator color for shaded windows */
if (!self->client->shaded)
px = (self->focused ?
RrColorPixel(ob_rr_theme->title_separator_focused_color) :
RrColorPixel(ob_rr_theme->title_separator_unfocused_color));
XSetWindowBackground(ob_display, self->titlebottom, px);
XClearWindow(ob_display, self->titlebottom);