ignore if non-zero expose events, for we could be covered by multiple

windows; merely an optimization.

ok oga@
This commit is contained in:
okan 2008-06-12 05:01:13 +00:00
parent 4377b5ac3f
commit 78c8bf08cb

View File

@ -506,7 +506,7 @@ xev_handle_expose(struct xevent *xev, XEvent *ee)
XExposeEvent *e = &ee->xexpose;
struct client_ctx *cc;
if ((cc = client_find(e->window)) != NULL)
if ((cc = client_find(e->window)) != NULL && e->count == 0)
client_draw_border(cc);
xev_register(xev);