aboutsummaryrefslogtreecommitdiff
path: root/src/layout.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/layout.ts')
-rw-r--r--src/layout.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout.ts b/src/layout.ts
index 15c156b..79d3b70 100644
--- a/src/layout.ts
+++ b/src/layout.ts
@@ -308,7 +308,7 @@ let sqrLayout: LayoutFn = function (node, pos, dims, showHeader, allowCollapse,
let numChildren = node.children.length;
let areaAR = newDims[0] / newDims[1]; // Aspect ratio
let lowestEmpSpc = Number.POSITIVE_INFINITY, usedNumCols = 0, usedNumRows = 0, usedTileSz = 0;
- const MAX_TRIES = 20; // If there are many possibilities, skip some
+ const MAX_TRIES = 50; // If there are many possibilities, skip some
let ptlNumCols = numChildren == 1 ? [1] :
linspace(1, numChildren, Math.min(numChildren, MAX_TRIES)).map(n => Math.floor(n));
for (let numCols of ptlNumCols){