dwl

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

commit e523c2b82b835aa27e6ad5d015ed38d6a5cae0bf
parent 6d0e3a51987ebda89193cf52996227110ad7068c
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Fri, 30 Dec 2022 14:19:47 -0600

update comment about client_set_size() as no-op

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

diff --git a/dwl.c b/dwl.c @@ -1875,7 +1875,7 @@ resize(Client *c, struct wlr_box geo, int interact) wlr_scene_node_set_position(&c->border[2]->node, 0, c->bw); wlr_scene_node_set_position(&c->border[3]->node, c->geom.width - c->bw, c->bw); - /* wlroots makes this a no-op if size hasn't changed */ + /* this is a no-op if size hasn't changed */ c->resize = client_set_size(c, c->geom.width - 2 * c->bw, c->geom.height - 2 * c->bw); }