SystemMonitor: left align the indicator container

MessageTray.actor now has ClutterBinLayout layout manager, so we need
to tell it esplicitly where to place us.
This commit is contained in:
Giovanni Campagna
2012-09-05 00:50:35 +02:00
parent 6c050118f4
commit ea3d27c311
+3 -1
View File
@@ -301,7 +301,9 @@ const Extension = new Lang.Class({
},
enable: function() {
this._box = new St.BoxLayout({ style_class: 'extension-systemMonitor-container' });
this._box = new St.BoxLayout({ style_class: 'extension-systemMonitor-container',
x_align: Clutter.ActorAlign.START,
x_expand: true });
this._indicators = [ ];
for (let i = 0; i < INDICATORS.length; i++) {