diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-09-10 23:38:07 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-09-10 23:38:07 +0200 |
commit | 31b505b74deb27cc341ad062e59beb16deff44d5 (patch) | |
tree | 6cfe0f7b859c84944406bf11c409680a11a18297 | |
parent | d0dd8d72eaa9d376d6115f57a122aa6a42ab734d (diff) | |
download | xmonad-31b505b74deb27cc341ad062e59beb16deff44d5.tar.gz xmonad-31b505b74deb27cc341ad062e59beb16deff44d5.tar.xz xmonad-31b505b74deb27cc341ad062e59beb16deff44d5.zip |
Remove redundant reveal
darcs-hash:20070910213807-a5988-5e66a786114f76a944ef95fb826fdfdd533ce1fd.gz
-rw-r--r-- | Operations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Operations.hs b/Operations.hs index 7611667..770ea7d 100644 --- a/Operations.hs +++ b/Operations.hs @@ -49,7 +49,7 @@ import qualified Data.Traversable as T -- manage :: Window -> X () manage w = whenX (fmap not $ isClient w) $ withDisplay $ \d -> do - setInitialProperties w >> reveal w + setInitialProperties w -- FIXME: This is pretty awkward. We can't can't let "refresh" happen -- before the call to float, because that will resize the window and |