draw bar on exposure ;)

This commit is contained in:
Anselm R. Garbe
2006-07-14 18:46:12 +02:00
parent 82384e385e
commit 59b4a5e4ca
3 changed files with 9 additions and 7 deletions

View File

@ -142,7 +142,9 @@ expose(XEvent *e)
Client *c;
if(ev->count == 0) {
if((c = gettitle(ev->window)))
if(barwin == ev->window)
draw_bar();
else if((c = gettitle(ev->window)))
draw_client(c);
}
}