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:
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user