From c4d3a497c656c620b6c128db745c906cacde3076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Hern=C3=A1ndez=20Hern=C3=A1ndez?= Date: Sat, 22 Jun 2024 12:13:28 -0600 Subject: [PATCH] also skip frames if a floating client has a pending resize --- dwl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwl.c b/dwl.c index d48bf40..511fa53 100644 --- a/dwl.c +++ b/dwl.c @@ -2056,7 +2056,7 @@ rendermon(struct wl_listener *listener, void *data) /* Render if no XDG clients have an outstanding resize and are visible on * this monitor. */ wl_list_for_each(c, &clients, link) { - if (c->resize && !c->isfloating && client_is_rendered_on_mon(c, m) && !client_is_stopped(c)) + if (c->resize && client_is_rendered_on_mon(c, m) && !client_is_stopped(c)) goto skip; }