Also cancel translucencyMoveResizeAnimations

When a window goes away it was stoppping translucencyWindowTypeAnimation
and translucencyInactiveAnimation but any translucencyMoveResizeAnimations

was hanging there forever, causing ghost windows

BUG:439332
This commit is contained in:
Marco Martin 2023-02-03 16:23:05 +01:00
parent 37c4a4536e
commit 1332d7de2c

View file

@ -102,6 +102,10 @@ var translucencyEffect = {
cancel(window.translucencyInactiveAnimation);
window.translucencyInactiveAnimation = undefined;
}
if (window.translucencyMoveResizeAnimations !== undefined) {
cancel(window.translucencyMoveResizeAnimations);
window.translucencyMoveResizeAnimations = undefined;
}
},
moveResize: {
start: function (window) {