From cc449228f3c0a640216caafa0f1a432177940938 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Thu, 22 Aug 2013 23:27:05 +0200 Subject: [PATCH] iconGrid: Rename childrenInRow to columnsForWidth Since the parameter of the function is the width, reflect that in the function name. Also, since we are counting columns, not only children for each row, reflect that in the function name also. https://bugzilla.gnome.org/show_bug.cgi?id=706081 --- js/ui/iconGrid.js | 2 +- js/ui/searchDisplay.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/iconGrid.js b/js/ui/iconGrid.js index a5c16f098..d408b1be7 100644 --- a/js/ui/iconGrid.js +++ b/js/ui/iconGrid.js @@ -330,7 +330,7 @@ const IconGrid = new Lang.Class({ return childBox; }, - childrenInRow: function(rowWidth) { + columnsForWidth: function(rowWidth) { return this._computeLayout(rowWidth)[0]; }, diff --git a/js/ui/searchDisplay.js b/js/ui/searchDisplay.js index 2177874f6..9d47e44ec 100644 --- a/js/ui/searchDisplay.js +++ b/js/ui/searchDisplay.js @@ -320,7 +320,7 @@ const GridSearchResults = new Lang.Class({ }, _getMaxDisplayedResults: function() { - return this._grid.childrenInRow(this._bin.width) * this._grid.getRowLimit(); + return this._grid.columnsForWidth(this._bin.width) * this._grid.getRowLimit(); }, _renderResults: function(metas) {