From 72a663f5541e94767a701f03c073f265702e0db5 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 3 Aug 2014 15:28:04 -0400 Subject: [PATCH] windowManager: Fix destroy animation Guess who didn't test his destroy animation that he pushed without any review!!! It wasn't me! --- js/ui/windowManager.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js index d77160e39..da4d780bb 100644 --- a/js/ui/windowManager.js +++ b/js/ui/windowManager.js @@ -1175,10 +1175,10 @@ const WindowManager = new Lang.Class({ scale_y: 0.8, time: DESTROY_WINDOW_ANIMATION_TIME, transition: 'easeOutQuad', - onComplete: this._mapWindowDone, + onComplete: this._destroyWindowDone, onCompleteScope: this, onCompleteParams: [shellwm, actor], - onOverwrite: this._mapWindowOverwrite, + onOverwrite: this._destroyWindowDone, onOverwriteScope: this, onOverwriteParams: [shellwm, actor] }); @@ -1201,7 +1201,7 @@ const WindowManager = new Lang.Class({ { scale_y: 0, time: DIALOG_DESTROY_WINDOW_ANIMATION_TIME, transition: 'easeOutQuad', - onComplete: this._destoyWindowDone, + onComplete: this._destroyWindowDone, onCompleteScope: this, onCompleteParams: [shellwm, actor], onOverwrite: this._destroyWindowDone,