diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js index 3405e98de..597e34a45 100644 --- a/js/ui/windowManager.js +++ b/js/ui/windowManager.js @@ -153,14 +153,13 @@ WindowManager.prototype = { } actor.move_anchor_point_from_gravity(Clutter.Gravity.CENTER); - actor.set_scale(0.0, 0.0); + actor.opacity = 0; actor.show(); /* scale window up from 0x0 to normal size */ this._mapping.push(actor); Tweener.addTween(actor, - { scale_x: 1.0, - scale_y: 1.0, + { opacity: 255, time: WINDOW_ANIMATION_TIME, transition: "easeOutQuad", onComplete: this._mapWindowDone,