dwl

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

commit d1496a2a9b4a336ea08f0ed3eae7fa3f155989b3
parent 80084839a9d9a3aaed323a267bbd2f061f37c8f7
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Wed,  7 Sep 2022 23:54:57 -0500

fix condition that always evaluate to false in commitlayersurfacenotify()

Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -792,7 +792,7 @@ commitlayersurfacenotify(struct wl_listener *listener, void *data) if (!wlr_output || !(layersurface->mon = wlr_output->data)) return; - if (layers[wlr_layer_surface->current.layer] != layersurface->scene) { + if (layers[wlr_layer_surface->current.layer] != layersurface->scene->parent) { wlr_scene_node_reparent(layersurface->scene, layers[wlr_layer_surface->current.layer]); wl_list_remove(&layersurface->link);