From cba49959c1658144694d87f3c954902507abef55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 6 Jun 2010 01:36:11 +0200 Subject: [PATCH] [dash] Left align well items When the app well does not contain enough items to fill a single row, items are centered - the same applies to sections in the all-app menu. https://bugzilla.gnome.org/show_bug.cgi?id=619236 --- js/ui/appDisplay.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index edf54c735..7d246ab72 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -996,7 +996,6 @@ WellGrid.prototype = { let nColumns = 0; let usedWidth = 0; while (nColumns < WELL_MAX_COLUMNS && - nColumns < children.length && (usedWidth + this._item_size <= forWidth)) { usedWidth += this._item_size + this._spacing; nColumns += 1;