diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2008-04-08 00:25:59 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2008-04-08 00:25:59 +0200 |
commit | 144efd1d7d5ce3714088b9c3a3a94bef0585caca (patch) | |
tree | 412055f87279571c9528bbe9800a5e4e7fb3c5a8 /XMonad | |
parent | 86d8f50784ebbc8904b4a2e97927201f247fe8cc (diff) | |
download | metatile-144efd1d7d5ce3714088b9c3a3a94bef0585caca.tar metatile-144efd1d7d5ce3714088b9c3a3a94bef0585caca.zip |
Set focus *after* revealing windows
darcs-hash:20080407222559-a5988-3810dfe1f0a43bb97b39e57e3303bbf90b0d404e
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Operations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Operations.hs b/XMonad/Operations.hs index 4246912..9f48d9e 100644 --- a/XMonad/Operations.hs +++ b/XMonad/Operations.hs @@ -151,10 +151,10 @@ windows f = do return vs whenJust (W.peek ws) $ \w -> io $ setWindowBorder d w fbc - setTopFocus asks (logHook . config) >>= userCode mapM_ reveal visible + setTopFocus -- hide every window that was potentially visible before, but is not -- given a position by a layout now. |