summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-08-24 06:59:39 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-08-24 06:59:39 +0200
commitf3dbd667811781ed438e3c094d3651bf4b7bf84b (patch)
treebf17192a70cf5c08bd708a36ddef82f0dc39e83c
parent6463d52abfc2a31e08ff3743ce7d3ebdc5904535 (diff)
downloadmetatile-f3dbd667811781ed438e3c094d3651bf4b7bf84b.tar
metatile-f3dbd667811781ed438e3c094d3651bf4b7bf84b.zip
Add docstrings for mouse controls
darcs-hash:20070824045939-a5988-2c9c3dd3cb6925c0aaccc0c857335c15d4deaf3c
-rw-r--r--Config.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Config.hs b/Config.hs
index dfd99af..34dae0e 100644
--- a/Config.hs
+++ b/Config.hs
@@ -178,6 +178,9 @@ keys = M.fromList $
--
mouseBindings :: M.Map (KeyMask, Button) (Window -> X ())
mouseBindings = M.fromList $
+ -- mod-button1 @@ Set the window to floating mode and move by dragging
[ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w))
+ -- mod-button2 @@ Raise the window to the top of the stack
, ((modMask, button2), (\w -> focus w >> swapMaster))
+ -- mod-button3 @@ Set the window to floating mode and resize by dragging
, ((modMask, button3), (\w -> focus w >> mouseResizeWindow w)) ]