xwm: remove duplicate calls in net wm state read

This commit is contained in:
Tony Crisci 2017-10-27 15:32:19 -04:00
parent c555a66dda
commit 680f8a169d
1 changed files with 0 additions and 1 deletions

View File

@ -460,7 +460,6 @@ static void read_surface_net_wm_state(struct wlr_xwm *xwm,
struct wlr_xwayland_surface *xsurface, xcb_get_property_reply_t *reply) {
xsurface->fullscreen = 0;
xcb_atom_t *atom = xcb_get_property_value(reply);
atom = xcb_get_property_value(reply);
for (uint32_t i = 0; i < reply->value_len; i++) {
if (atom[i] == xwm->atoms[_NET_WM_STATE_FULLSCREEN])
xsurface->fullscreen = true;