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:
parent
37c4a4536e
commit
1332d7de2c
1 changed files with 4 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue