From 17a3d2c63f8bcb12d69b7bb57a9937bf88f42467 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 20 Aug 2012 19:44:40 -0400 Subject: [PATCH] searchDisplay: Put the grid search results in the middle This is still "off-balance" due to the dash on the left. --- 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 f37a88fa6..690979d7a 100644 --- a/js/ui/searchDisplay.js +++ b/js/ui/searchDisplay.js @@ -276,7 +276,7 @@ const GridSearchResults = new Lang.Class({ this._grid = grid || new IconGrid.IconGrid({ rowLimit: MAX_GRID_SEARCH_RESULTS_ROWS, xAlign: St.Align.START }); - this.actor = new St.Bin({ x_align: St.Align.START }); + this.actor = new St.Bin({ x_align: St.Align.MIDDLE }); this.actor.set_child(this._grid.actor); this._width = 0;