ViewSelector: remove unnecessary StBoxLayout

It was a remnant from the tabbed interface.

https://bugzilla.gnome.org/show_bug.cgi?id=690171
This commit is contained in:
Giovanni Campagna 2012-12-13 23:21:53 +01:00
parent f7af96dbb2
commit be10f3c2b5

View File

@ -39,17 +39,11 @@ const ViewSelector = new Lang.Class({
Name: 'ViewSelector',
_init : function(searchEntry, showAppsButton) {
this.actor = new St.BoxLayout({ name: 'viewSelector',
vertical: true });
this.actor = new Shell.Stack({ name: 'viewSelector' });
this._showAppsButton = showAppsButton;
this._showAppsButton.connect('notify::checked', Lang.bind(this, this._onShowAppsButtonToggled));
this._pageArea = new Shell.Stack();
this.actor.add(this._pageArea, { x_fill: true,
y_fill: true,
expand: true });
this._activePage = null;
this.active = false;
@ -191,7 +185,7 @@ const ViewSelector = new Lang.Class({
this._a11yFocusPage(page);
})
});;
this._pageArea.add_actor(page);
this.actor.add_actor(page);
return page;
},