[window] Check bitmask, not full comparison

This commit is contained in:
Dave Davenport 2022-09-25 21:45:20 +02:00
parent 5ae8fa5a3f
commit 5185895643
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ window_get_attributes(xcb_window_t w) {
// _NET_WM_STATE_*
static int client_has_state(client *c, xcb_atom_t state) {
for (int i = 0; i < c->states; i++) {
if (c->state[i] == state) {
if ((c->state[i] & state) == state) {
return 1;
}
}