Fix icon/text alignment in message tray

https://bugzilla.gnome.org/show_bug.cgi?id=603546
This commit is contained in:
Dan Winship 2009-12-08 10:11:33 -05:00
parent 74418f2129
commit 3658f8a8b4

View File

@ -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 });