Check the atom type on propertynotify before iterating.

This commit is contained in:
okan 2019-03-11 15:25:46 +00:00
parent e55c0d48fa
commit 9a7528f5b9

View File

@ -210,11 +210,13 @@ xev_handle_propertynotify(XEvent *ee)
/* do nothing */ /* do nothing */
break; break;
} }
} else if ((sc = screen_find(e->window)) != NULL) { } else {
if (e->atom == ewmh[_NET_DESKTOP_NAMES]) if (e->atom == ewmh[_NET_DESKTOP_NAMES]) {
if ((sc = screen_find(e->window)) != NULL)
xu_ewmh_net_desktop_names(sc); xu_ewmh_net_desktop_names(sc);
} }
} }
}
static void static void
xev_handle_enternotify(XEvent *ee) xev_handle_enternotify(XEvent *ee)