diff --git a/js/ui/viewSelector.js b/js/ui/viewSelector.js index 868fab78c..ba09ae261 100644 --- a/js/ui/viewSelector.js +++ b/js/ui/viewSelector.js @@ -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; },