~alcinnz/CatTrap

e3db59e14fb0ec93feaf966398d74396c38b237b — Adrian Cochrane 1 year, 3 months ago ae8cdfe
Type error fix upon boxMinWidth type declaration change.
1 files changed, 1 insertions(+), 1 deletions(-)

M Graphics/Layout.hs
M Graphics/Layout.hs => Graphics/Layout.hs +1 -1
@@ 75,7 75,7 @@ boxMinWidth parent (LayoutGrid val self childs) = LayoutGrid val self' $ zip cel
                | cell <- cells']
    cells' = map setCellBox' $ zip childs' $ map fst childs
    childs'' = map (mapX' $ lowerLength selfWidth) $ map layoutGetBox childs'
    childs' = map snd $ map (boxMinWidth $ Just selfWidth) $ map snd childs
    childs' = map (boxMinWidth $ Just selfWidth) $ map snd childs
    selfWidth = lowerLength parent' $ inline $ containerSize self
    parent' = fromMaybe (gridEstWidth self [
        GridItem startRow endRow startCol endCol alignment zeroBox |