aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-12-30 14:19:47 -0600
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-12-30 14:19:47 -0600
commite523c2b82b835aa27e6ad5d015ed38d6a5cae0bf (patch)
tree4f791251a1a827e06e185b61e909ab7bd7c4565f /dwl.c
parent6d0e3a51987ebda89193cf52996227110ad7068c (diff)
update comment about client_set_size() as no-op
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index 5189757..7ae2032 100644
--- 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);
}