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 | a1e4e611f4d422f01f9c62939e14cb19f1e720f9 (patch) | |
tree | a83327d1591ffa1fdbd5d836894343923406e050 | |
parent | feedc558ca871d436e20f74a692a0e42c1d689fb (diff) | |
download | metatile-a1e4e611f4d422f01f9c62939e14cb19f1e720f9.tar metatile-a1e4e611f4d422f01f9c62939e14cb19f1e720f9.zip |
Remove the magic '2'
darcs-hash:20070521234535-a5988-1f7d9a7ac5bc14119c249f640946af8e57917030
-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. |