diff options
author | Alec Berryman <alec@thened.net> | 2007-03-29 04:43:30 +0200 |
---|---|---|
committer | Alec Berryman <alec@thened.net> | 2007-03-29 04:43:30 +0200 |
commit | 9d3e6d8a8f5fbb745758f621bf6331272261c79b (patch) | |
tree | a486059d84cf1f364a2d5fd231d85009fbeb98e8 | |
parent | d10c7eafba08e3314336bee7b50f78e5a5d09e15 (diff) | |
download | xmonad-9d3e6d8a8f5fbb745758f621bf6331272261c79b.tar.gz xmonad-9d3e6d8a8f5fbb745758f621bf6331272261c79b.tar.xz xmonad-9d3e6d8a8f5fbb745758f621bf6331272261c79b.zip |
Type error: button1 :: Button, not :: ButtonMask
darcs-hash:20070329024330-39448-e216b34ecbe8822e90a4bf1a65ebea22a7261c49.gz
-rw-r--r-- | Operations.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Operations.hs b/Operations.hs index f30460a..b80d16f 100644 --- a/Operations.hs +++ b/Operations.hs @@ -98,7 +98,7 @@ hide w = withDisplay $ \d -> do -- Window operations -- | setButtonGrab. Tell whether or not to intercept clicks on a given window -buttonsToGrab :: [ButtonMask] +buttonsToGrab :: [Button] buttonsToGrab = [button1, button2, button3] setButtonGrab :: Bool -> Window -> X () |