effects/scale: Make it not grab open and close roles

Otherwise the fall apart effect will refuse to work; the fade effect
already works like that.

BUG: 449832
This commit is contained in:
Vlad Zahorodnii 2022-02-09 11:46:59 +02:00
parent d0c12ac54d
commit 20399e0c42

View file

@ -96,7 +96,7 @@ class ScaleEffect {
if (!window.visible) {
return;
}
if (!effect.grab(window, Effect.WindowAddedGrabRole)) {
if (effect.isGrabbed(window, Effect.WindowAddedGrabRole)) {
return;
}
this.setupForcedRoles(window);
@ -127,7 +127,7 @@ class ScaleEffect {
if (!window.visible || window.skipsCloseAnimation) {
return;
}
if (!effect.grab(window, Effect.WindowClosedGrabRole)) {
if (effect.isGrabbed(window, Effect.WindowClosedGrabRole)) {
return;
}
if (window.scaleInAnimation) {