diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-03 19:48:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-03 19:48:43 +0000 |
| commit | 8861b44cc8f6a5870ea3a88c25a576729850711a (patch) | |
| tree | badb03360a8126d686087f7ff51cb8484af9c6aa /openbox | |
| parent | 3853b19f0e43399aa0e378a242211cfa27f7c435 (diff) | |
don't use the title separator color for shaded windows
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/framerender.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openbox/framerender.c b/openbox/framerender.c index f122eef8..b5cdf174 100644 --- a/openbox/framerender.c +++ b/openbox/framerender.c @@ -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); |
