use similiar style for client flags

This commit is contained in:
okan
2014-09-15 13:00:49 +00:00
parent 26b95de019
commit 4b6dc96398
4 changed files with 7 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ xev_handle_maprequest(XEvent *ee)
if ((cc = client_find(e->window)) == NULL)
cc = client_init(e->window, NULL);
if ((cc != NULL) && ((cc->flags & CLIENT_IGNORE) == 0))
if ((cc != NULL) && (!(cc->flags & CLIENT_IGNORE)))
client_ptrwarp(cc);
}