aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions/ConstrainedResize.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2007-11-24 03:26:35 +0100
committerBrent Yorgey <byorgey@gmail.com>2007-11-24 03:26:35 +0100
commiteb322f0b8993fea56dd05124155ff1773fe5103b (patch)
tree1d9b2c81dba90e464a3ed3fdf9cc79afda1bc14f /XMonad/Actions/ConstrainedResize.hs
parent17f297a62ce0ce391fc7ca883bec4c4bb7a676de (diff)
downloadXMonadContrib-eb322f0b8993fea56dd05124155ff1773fe5103b.tar.gz
XMonadContrib-eb322f0b8993fea56dd05124155ff1773fe5103b.tar.xz
XMonadContrib-eb322f0b8993fea56dd05124155ff1773fe5103b.zip
Haddock docs: modMask --> modMask x
darcs-hash:20071124022635-bd4d7-16491e97f6ddf5d1a467379296696d6b26bd2721.gz
Diffstat (limited to 'XMonad/Actions/ConstrainedResize.hs')
-rw-r--r--XMonad/Actions/ConstrainedResize.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Actions/ConstrainedResize.hs b/XMonad/Actions/ConstrainedResize.hs
index 3dd1569..1d0922d 100644
--- a/XMonad/Actions/ConstrainedResize.hs
+++ b/XMonad/Actions/ConstrainedResize.hs
@@ -34,8 +34,8 @@ import Graphics.X11.Xlib.Extras
--
-- Then add something like the following to your mouse bindings:
--
--- > , ((modMask, button3), (\w -> focus w >> Sqr.mouseResizeWindow w False))
--- > , ((modMask .|. shiftMask, button3), (\w -> focus w >> Sqr.mouseResizeWindow w True ))
+-- > , ((modMask x, button3), (\w -> focus w >> Sqr.mouseResizeWindow w False))
+-- > , ((modMask x .|. shiftMask, button3), (\w -> focus w >> Sqr.mouseResizeWindow w True ))
--
-- The line without the shiftMask replaces the standard mouse resize
-- function call, so it's not completely necessary but seems neater