Manage windows that are created before thunk starts

This commit is contained in:
Spencer Janssen 2007-03-07 21:01:17 +00:00
parent dda3f2c07a
commit 160f07a47c

View File

@ -77,6 +77,10 @@ main = do
io $ do selectInput dpy r (substructureRedirectMask .|. substructureNotifyMask) io $ do selectInput dpy r (substructureRedirectMask .|. substructureNotifyMask)
sync dpy False sync dpy False
registerKeys dpy r registerKeys dpy r
(_, _, ws) <- io $ queryTree dpy r
forM_ ws $ \w -> do
wa <- io $ getWindowAttributes dpy w
when (waMapState wa == waIsViewable) (manage w)
go dpy go dpy
return () return ()