diff options
author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-12-21 14:28:27 -0600 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-12-24 16:44:09 -0600 |
commit | 6ca011430a18980f12f7314cdeeff36051268a67 (patch) | |
tree | 460cdb3606acb99d33dfc8cc8c2f2201603d239a /dwl.c | |
parent | 7eaa01ac1f074511ae1013326172d51c6fdf8866 (diff) |
do not skip frames if a client is stopped and have a pending resize
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1836,7 +1836,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 (client_is_rendered_on_mon(c, m) && (!c->isfloating && c->resize)) + if (client_is_rendered_on_mon(c, m) && (!c->isfloating && c->resize) && !client_is_stopped(c)) goto skip; if (!wlr_scene_output_commit(m->scene_output)) return; |