aboutsummaryrefslogtreecommitdiffstats
path: root/Mosaic.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Mosaic.hs')
-rw-r--r--Mosaic.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Mosaic.hs b/Mosaic.hs
index 2d9cc60..e90bc4d 100644
--- a/Mosaic.hs
+++ b/Mosaic.hs
@@ -50,6 +50,9 @@ expandWindow = ExpandWindow
shrinkWindow = ShrinkWindow
squareWindow = SquareWindow
+largeNumber :: Int
+largeNumber = 1000
+
mosaic :: Rational -> Rational -> M.Map NamedWindow WindowRater -> M.Map NamedWindow Area -> Layout
mosaic delta tileFrac raters areas = Layout { doLayout = mosaicL tileFrac raters areas
, modifyLayout = mlayout }
@@ -109,7 +112,7 @@ mosaicL f raters areas origRect origws
map (fmap M . catRated .
map (\(ws',r') -> my_mosaic r' (otherDirection d) ws')) $
map (\ws' -> zip ws' $ partitionR d r $ map sumareas ws') $
- init $ allsplits ws
+ take largeNumber $ init $ allsplits ws
where minL [] = myerror "minL on empty list"
minL [a] = a
minL (a:b:c) = minL (min a b:c)