don't set `c->isfullscreen` to zero

calloc initializes all fields to zero
This commit is contained in:
Leonardo Hernández Hernández 2022-06-20 18:05:16 -05:00
parent 74fce9d918
commit 79ad72413d
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 0 additions and 2 deletions

2
dwl.c
View File

@ -977,7 +977,6 @@ createnotify(struct wl_listener *listener, void *data)
LISTEN(&xdg_surface->toplevel->events.set_title, &c->set_title, updatetitle);
LISTEN(&xdg_surface->toplevel->events.request_fullscreen, &c->fullscreen,
fullscreennotify);
c->isfullscreen = 0;
}
void
@ -2468,7 +2467,6 @@ createnotifyx11(struct wl_listener *listener, void *data)
c->surface.xwayland = xwayland_surface;
c->type = xwayland_surface->override_redirect ? X11Unmanaged : X11Managed;
c->bw = borderpx;
c->isfullscreen = 0;
/* Listen to the various events it can emit */
LISTEN(&xwayland_surface->events.map, &c->map, mapnotify);