diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-10-03 18:16:43 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-10-03 18:16:43 +0200 |
commit | 4433b1119ca12a43c7c023f734d368f400a3ec4c (patch) | |
tree | 64d0dd67b5bfabc2a98a22e7418488618487028a | |
parent | 839ebd2fde3b665a90a3fa45a6c7b759fb34d764 (diff) | |
download | metatile-4433b1119ca12a43c7c023f734d368f400a3ec4c.tar metatile-4433b1119ca12a43c7c023f734d368f400a3ec4c.zip |
Pointfree
darcs-hash:20071003161643-a5988-ae0d1955200eb63560a8ed8b0cf45fa11bde2241
-rw-r--r-- | Config.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ defaultGaps = [(0,0,0,0)] -- 15 for default dzen manageHook :: Window -> (String, String, String) -> X (WindowSet -> WindowSet) -- Float various windows: -manageHook w (_, _, c) | c `elem` floats = do (_, rr) <- floatLocation w; return (W.float w rr) +manageHook w (_, _, c) | c `elem` floats = fmap (W.float w . snd) (floatLocation w) where floats = ["MPlayer", "Gimp"] -- Don't manage various panels and desktop windows: |