From 9830b3b8f74eb342e2f527c7c5e8a50d519ff60c Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 15 Apr 2014 16:21:33 -0400 Subject: [PATCH] appDisplay: Don't pass too many args to add_actor --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index b908d1bf6..cf570cf73 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -764,7 +764,7 @@ const AppDisplay = new Lang.Class({ this._viewStack = new St.Widget({ x_expand: true, y_expand: true, layout_manager: this._viewStackLayout }); this._viewStackLayout.connect('allocated-size-changed', Lang.bind(this, this._onAllocatedSizeChanged)); - this.actor.add_actor(this._viewStack, { expand: true }); + this.actor.add_actor(this._viewStack); let layout = new ControlsBoxLayout({ homogeneous: true }); this._controls = new St.Widget({ style_class: 'app-view-controls', layout_manager: layout });