kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=f770f9d22321007d0ab235e8983a147a360286c0
commit f770f9d22321007d0ab235e8983a147a360286c0 Author: Kim Woelders <k...@woelders.dk> Date: Fri Apr 30 19:29:16 2021 +0200 FX: Fix waves cleanup --- src/fx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fx.c b/src/fx.c index 573443dc..87d0ce94 100644 --- a/src/fx.c +++ b/src/fx.c @@ -306,8 +306,8 @@ FX_Waves_Ops(int op) if (op != FX_OP_DISABLE) return; - EClearArea(d->win, 0, WinGetH(VROOT) - FX_WAVE_WATERH, - WinGetW(VROOT), FX_WAVE_WATERH); + EClearArea(d->win, 0, WinGetH(VROOT) - 2 * FX_WAVE_WATERH - FX_WAVE_DEPTH, + WinGetW(VROOT), 2 * FX_WAVE_WATERH + FX_WAVE_DEPTH); EXFreeGC(d->gc1); AnimatorDel(NULL, fx_waves); --