diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-05-08 17:04:12 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-05-08 17:04:12 +0200 |
commit | 68af29015b6e3c3dd2397712d57a38aeffdbd24f (patch) | |
tree | c4f259cb54557e2c4feea5fd7e13333ce60b2aa2 | |
parent | bc0db7c00b01ee9f16bdce040ff1298b25a3a1b6 (diff) | |
download | metatile-68af29015b6e3c3dd2397712d57a38aeffdbd24f.tar metatile-68af29015b6e3c3dd2397712d57a38aeffdbd24f.zip |
Redundant parens
darcs-hash:20070508150412-a5988-abf7b3c1e96051cb0cb964f6a94239ac76f83a4e
-rw-r--r-- | Operations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Operations.hs b/Operations.hs index 0b45b75..ac5bcc9 100644 --- a/Operations.hs +++ b/Operations.hs @@ -297,7 +297,7 @@ view n = do ws' <- gets workspace -- If the old workspace isn't visible anymore, we have to hide the windows -- in case we're switching to an empty workspace. - when (m `notElem` (W.visibleWorkspaces ws')) (mapM_ hide (W.index m ws)) + when (m `notElem` W.visibleWorkspaces ws') (mapM_ hide (W.index m ws)) clearEnterEvents setTopFocus |