limit conference table size
This commit is contained in:
parent
78b4ef0eeb
commit
795e0fc24c
1 changed files with 4 additions and 2 deletions
|
@ -117,8 +117,10 @@ clusterMatWithRPs ClusterFlipchart dim _ =
|
||||||
, clusterPoints ClusterFlipchart dim
|
, clusterPoints ClusterFlipchart dim
|
||||||
)
|
)
|
||||||
clusterMatWithRPs ClusterConferenceTable dim@(h, w) _ =
|
clusterMatWithRPs ClusterConferenceTable dim@(h, w) _ =
|
||||||
let mw = max 4 w
|
let mmw = max 4 w
|
||||||
mh = max 4 h
|
mmh = max 4 h
|
||||||
|
mw = min 7 mmw
|
||||||
|
mh = min 7 mmh
|
||||||
in
|
in
|
||||||
( M.fromLists $
|
( M.fromLists $
|
||||||
[ replicate mw (Just ImgEmpty)
|
[ replicate mw (Just ImgEmpty)
|
||||||
|
|
Loading…
Reference in a new issue