Focus has prio over urgent in titlebar style drawing
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
7605585aee
commit
3514982955
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue