From 02f67af4644161629f8bb4c6d27a0aa40ecd4412 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 11 Feb 2010 15:39:43 -0500 Subject: [PATCH] [MessageTray] Fix summary to be initially-hidden Some recent change broke it so that the first time a notification pops up, the summary will be visible alongside it. https://bugzilla.gnome.org/show_bug.cgi?id=609765 --- js/ui/messageTray.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index d9d45ab3b..405f06ecd 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -361,9 +361,9 @@ MessageTray.prototype = { x_fill: false, expand: true }); - this._summary.connect('enter-event', - Lang.bind(this, this._showMessageTray)); + Lang.bind(this, this._showMessageTray)); + this._summaryBin.opacity = 0; this.actor.connect('enter-event', Lang.bind(this, function() {