diff options
-rw-r--r-- | Operations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Operations.hs b/Operations.hs index 5ed65e8..50484c3 100644 --- a/Operations.hs +++ b/Operations.hs @@ -139,7 +139,7 @@ windows f = do rs <- doLayout l (Rectangle (sx + fromIntegral gl) (sy + fromIntegral gt) (sw - fromIntegral (gl + gr)) (sh - fromIntegral (gt + gb))) tiled - mapM_ (\(win,rect) -> tileWindow win rect) rs + mapM_ (uncurry tileWindow) rs -- now the floating windows: -- move/resize the floating windows, if there are any |