Revert "Sel/Normal statusline for client above free statusline"

This reverts commit 59649248eac9b3b7997f2aebdc209b0fc52d49a8.
This commit is contained in:
Martin Duquesnoy 2012-02-26 14:12:10 +01:00
parent 59649248ea
commit 4b5e0aa0da

View File

@ -372,6 +372,10 @@ client_grabbuttons(struct client *c, bool focused)
#define _STATUSLINE(C, b) \
do { \
sctx = (b ? &c->theme->client_s_sl : &c->theme->client_n_sl); \
sctx->barwin = C->titlebar; \
status_copy_mousebind(sctx); \
status_render(sctx); \
if(C->flags & CLIENT_FREE) \
{ \
sctx = &c->theme->client_f_sl; \
@ -379,10 +383,6 @@ client_grabbuttons(struct client *c, bool focused)
status_copy_mousebind(sctx); \
status_render(sctx); \
} \
sctx = (b ? &c->theme->client_s_sl : &c->theme->client_n_sl); \
sctx->barwin = C->titlebar; \
status_copy_mousebind(sctx); \
status_render(sctx); \
} while(/* CONSTCOND */ 0);
void
client_frame_update(struct client *c, struct colpair *cp)