[gnome-shell/message-tray] Fix icon/text alignment in message tray



commit 3658f8a8b487b7009cef66b568c09729fc333377
Author: Dan Winship <danw gnome org>
Date:   Tue Dec 8 10:11:33 2009 -0500

    Fix icon/text alignment in message tray
    
    https://bugzilla.gnome.org/show_bug.cgi?id=603546

 js/ui/messageTray.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index fe7abf9..47d0b1b 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 });
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]