From 0b866fb17f8b8498c449f6d841ca8d79316163a0 Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Tue, 16 Oct 2018 17:16:18 +0100 Subject: [PATCH] Hot fix: trail when moving windows around Call win_on_factor_change when window is moved. This does some duplicate work, but fix the problem for now. --- src/compton.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compton.c b/src/compton.c index b2b991c..25ebb53 100644 --- a/src/compton.c +++ b/src/compton.c @@ -2301,6 +2301,7 @@ configure_win(session_t *ps, xcb_configure_notify_event_t *ce) { pixman_region32_fini(&new_extents); if (factor_change) { + win_on_factor_change(ps, w); add_damage(ps, &damage); cxinerama_win_upd_scr(ps, w); }