[gnome-shell/wip/re-search: 444/457] iconGrid: Handle preferred height requests for infinite widths
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/re-search: 444/457] iconGrid: Handle preferred height requests for infinite widths
- Date: Mon, 8 Oct 2012 15:20:26 +0000 (UTC)
commit ff196de3c289429c7414b2b950691377f319a289
Author: Rui Matos <tiagomatos gmail com>
Date: Sun Jul 1 18:38:28 2012 +0200
iconGrid: Handle preferred height requests for infinite widths
Request enough height to fit all children in a single line instead of
requesting 0.
https://bugzilla.gnome.org/show_bug.cgi?id=679168
js/ui/iconGrid.js | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/iconGrid.js b/js/ui/iconGrid.js
index 81f5cef..04b8caf 100644
--- a/js/ui/iconGrid.js
+++ b/js/ui/iconGrid.js
@@ -198,7 +198,11 @@ const IconGrid = new Lang.Class({
_getPreferredHeight: function (grid, forWidth, alloc) {
let children = this._getVisibleChildren();
- let [nColumns, usedWidth] = this._computeLayout(forWidth);
+ let nColumns;
+ if (forWidth < 0)
+ nColumns = children.length;
+ else
+ nColumns = this._computeLayout(forWidth)[0];
let nRows;
if (nColumns > 0)
nRows = Math.ceil(children.length / nColumns);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]