From 3658f8a8b487b7009cef66b568c09729fc333377 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 8 Dec 2009 10:11:33 -0500 Subject: [PATCH] Fix icon/text alignment in message tray https://bugzilla.gnome.org/show_bug.cgi?id=603546 --- js/ui/messageTray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index fe7abf9ae..47d0b1b96 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -24,7 +24,7 @@ Notification.prototype = { this.actor.add(this._iconBox); this._text = new St.Label(); - this.actor.add(this._text, { expand: true, x_fill: false, x_align: St.Align.MIDDLE }); + this.actor.add(this._text, { expand: true, x_fill: false, y_fill: false, y_align: St.Align.MIDDLE }); Main.chrome.addActor(this.actor, { affectsStruts: false });