diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-05-22 01:45:35 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-05-22 01:45:35 +0200 |
commit | 1b48786c62d1bc3076441e1b0ac998988cbe9954 (patch) | |
tree | a83327d1591ffa1fdbd5d836894343923406e050 | |
parent | 2ae9fd670d1448116bef2fc794de3c36dc6950bb (diff) | |
download | xmonad-1b48786c62d1bc3076441e1b0ac998988cbe9954.tar.gz xmonad-1b48786c62d1bc3076441e1b0ac998988cbe9954.tar.xz xmonad-1b48786c62d1bc3076441e1b0ac998988cbe9954.zip |
Remove the magic '2'
darcs-hash:20070521234535-a5988-1f7d9a7ac5bc14119c249f640946af8e57917030.gz
-rw-r--r-- | Operations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Operations.hs b/Operations.hs index 6eff4be..62d0d51 100644 --- a/Operations.hs +++ b/Operations.hs @@ -108,7 +108,7 @@ windows f = do hide :: Window -> X () hide w = withDisplay $ \d -> do (sw,sh) <- gets dimensions - io $ moveWindow d w (2*sw) (2*sh) + io $ moveWindow d w sw sh -- | refresh. Render the currently visible workspaces, as determined by -- the StackSet. Also, set focus to the focused window. |