aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Actions/ConstrainedResize.hs
diff options
context:
space:
mode:
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