From b5ce81aa47eb6594c40cefedf24404dc54507dca Mon Sep 17 00:00:00 2001 From: Bernd Busse Date: Tue, 6 Jul 2021 18:40:10 +0200 Subject: [PATCH] event: never ignore changed frame extents Changes to frame extents were only tracked if the frame was visible, but we have to keep this information current even for invisible frames to (not) render the correct area. --- src/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.c b/src/event.c index 1fb033c..b022631 100644 --- a/src/event.c +++ b/src/event.c @@ -506,7 +506,7 @@ static inline void ev_property_notify(session_t *ps, xcb_property_notify_event_t } // If frame extents property changes - if (ps->o.frame_opacity > 0 && ev->atom == ps->atoms->a_NET_FRAME_EXTENTS) { + if (ev->atom == ps->atoms->a_NET_FRAME_EXTENTS) { auto w = find_toplevel(ps, ev->window); if (w) { win_set_property_stale(w, ev->atom);