[gnome-shell] windowManager: Fix destroy animation



commit 72a663f5541e94767a701f03c073f265702e0db5
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Sun Aug 3 15:28:04 2014 -0400

    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 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index d77160e..da4d780 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,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]