dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit 79ad72413d8df7e184ff8f458d53a1f53a2cb878
parent 74fce9d91870c2a319a5eefe223d0fa01a6d2e7e
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Mon, 20 Jun 2022 18:05:16 -0500

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

calloc initializes all fields to zero

Diffstat:
Mdwl.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/dwl.c b/dwl.c @@ -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);