summaryrefslogtreecommitdiffstats
path: root/Operations.hs
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-06-21 05:36:13 +0200
committerDon Stewart <dons@cse.unsw.edu.au>2007-06-21 05:36:13 +0200
commit9d718cd31b28f6799fd2dd25ffe17d9032dadbda (patch)
tree2d0deb3b04f2df0807b1b77c43e95e19bbbf75ea /Operations.hs
parentadaa494d40394b3db3df65118f91bf310a943afc (diff)
downloadmetatile-9d718cd31b28f6799fd2dd25ffe17d9032dadbda.tar
metatile-9d718cd31b28f6799fd2dd25ffe17d9032dadbda.zip
minor tweaks, ideas from joachim.fasting@
darcs-hash:20070621033613-9c5c1-51e25d524c5a54aafbab14f55b3b155c558195d2
Diffstat (limited to 'Operations.hs')
-rw-r--r--Operations.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Operations.hs b/Operations.hs
index a40b2a0..cd20c47 100644
--- a/Operations.hs
+++ b/Operations.hs
@@ -99,7 +99,7 @@ view = windows . W.view
modifyGap :: (Int -> (Int,Int,Int,Int) -> (Int,Int,Int,Int)) -> X ()
modifyGap f = do
XState { windowset = ws, statusGaps = gaps } <- get
- let n = fromIntegral $ W.screen (W.current ws)
+ let n = fromIntegral . W.screen $ W.current ws
(a,i:b) = splitAt n gaps
modify $ \s -> s { statusGaps = a ++ f n i : b }
refresh