aboutsummaryrefslogtreecommitdiffstats
path: root/Main.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-06-10 03:22:37 +0200
committerDavid Roundy <droundy@darcs.net>2007-06-10 03:22:37 +0200
commit691ee5945cccc64c5fadf88dbb7266f6481ef064 (patch)
tree53812418e0c2d056375736289882132fc430083f /Main.hs
parentb923b690f669b79654c455f4b4e2d3adeb999694 (diff)
downloadxmonad-691ee5945cccc64c5fadf88dbb7266f6481ef064.tar.gz
xmonad-691ee5945cccc64c5fadf88dbb7266f6481ef064.tar.xz
xmonad-691ee5945cccc64c5fadf88dbb7266f6481ef064.zip
implement Spencer's decoration suggestion.
darcs-hash:20070610012237-72aca-4c5873773e58103f57f7a0b232da58c269248fa7.gz
Diffstat (limited to '')
-rw-r--r--Main.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Main.hs b/Main.hs
index 24e88ee..c17e741 100644
--- a/Main.hs
+++ b/Main.hs
@@ -224,4 +224,6 @@ handle e@(ConfigureRequestEvent {ev_window = w}) = withDisplay $ \dpy -> do
-- the root may have configured
handle (ConfigureEvent {ev_window = w}) = whenX (isRoot w) rescreen
-handle _ = return () -- trace (eventName e) -- ignoring
+handle e = sendMessage e -- trace (eventName e) -- ignoring
+
+instance Message Event