From 4e7000988d3a8374c1587383284910a2c531ec77 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 20 Feb 2015 18:11:58 -0800 Subject: [PATCH] messageTray: Make Tweener shut up about normal properties Tweener needs an initial value to tween from, otherwise it won't work, so give it something it can use. --- js/ui/messageTray.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 9e9f7af4c..345dede34 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1902,6 +1902,7 @@ const MessageTray = new Lang.Class({ this.actor.add_actor(this._banner.actor); + this.actor._opacity = 0; this.actor.opacity = 0; this.actor.y = -this._banner.actor.height; this.actor.show();