summaryrefslogtreecommitdiffstats
path: root/XMonad/Operations.hs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-09-11 02:20:53 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-09-11 02:20:53 +0200
commit44e16cb55e3564ac40b6d8ce107680bdf0dc29bc (patch)
tree5d37c6a9d0983c5672d7c47c851cdfa0eef06197 /XMonad/Operations.hs
parentcf6ed48334aa06718b29abf45b2be8ee2683a977 (diff)
downloadmetatile-44e16cb55e3564ac40b6d8ce107680bdf0dc29bc.tar
metatile-44e16cb55e3564ac40b6d8ce107680bdf0dc29bc.zip
Use none for zero XIDs
Diffstat (limited to 'XMonad/Operations.hs')
-rw-r--r--XMonad/Operations.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Operations.hs b/XMonad/Operations.hs
index ad6f8b1..1723ed8 100644
--- a/XMonad/Operations.hs
+++ b/XMonad/Operations.hs
@@ -202,7 +202,7 @@ reveal w = withDisplay $ \d -> do
-- send absolute ConfigureNotify
allocaXEvent $ \event -> do
setEventType event configureNotify
- setConfigureEvent event w w (fi x') (fi y') (fi width') (fi height') 0 0 False
+ setConfigureEvent event w w (fi x') (fi y') (fi width') (fi height') 0 none False
sendEvent d w False structureNotifyMask event
modifyWindowState (\ws -> ws { wsMapped = True }) w
where