diff --git a/titlebar.c b/titlebar.c index b2459fa4e..bfbe076f6 100644 --- a/titlebar.c +++ b/titlebar.c @@ -199,10 +199,10 @@ titlebar_update(Client *c) } - if(c->isurgent) - style = c->titlebar.styles.urgent; - else if(globalconf.focus->client == c) + if(globalconf.focus->client == c) style = c->titlebar.styles.focus; + else if(c->isurgent) + style = c->titlebar.styles.urgent; else style = c->titlebar.styles.normal;