From 660cfe707c2321f62d62d817dcdae0f78524357b Mon Sep 17 00:00:00 2001 From: Tanner Doshier Date: Wed, 16 Jan 2013 22:02:48 -0600 Subject: [PATCH] searchDisplay: Make list results span all available horizontal space https://bugzilla.gnome.org/show_bug.cgi?id=691967 --- js/ui/searchDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/searchDisplay.js b/js/ui/searchDisplay.js index da4769a36..073913f31 100644 --- a/js/ui/searchDisplay.js +++ b/js/ui/searchDisplay.js @@ -178,7 +178,7 @@ const ListSearchResults = new Lang.Class({ this._content = new St.BoxLayout({ style_class: 'list-search-results', vertical: true }); - this.actor.add_actor(this._content); + this.actor.add(this._content, { expand: true }); this._notDisplayedResult = []; this._terms = [];