diff options
Diffstat (limited to 'Action.hs')
-rw-r--r-- | Action.hs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -193,9 +193,8 @@ topOverrun State{..} = botOverrun :: State -> Int botOverrun State{..} = - max 0 (linearPos cursor - yoffset - (screenHeight - (length headBuffer) - 1)) + max 0 (linearPos cursor - yoffset - (screenHeight - length headBuffer - 1)) setSubForest :: Tree.Forest a -> Tree.Tree a -> Tree.Tree a setSubForest sf t = t { Tree.subForest = sf } - |