diff options
author | Daniel Schoepe <daniel.schoepe@gmail.com> | 2009-08-13 22:01:19 +0200 |
---|---|---|
committer | Daniel Schoepe <daniel.schoepe@gmail.com> | 2009-08-13 22:01:19 +0200 |
commit | cbc472335083c975ad0704d5e3f5e4fbf41e9528 (patch) | |
tree | 3acf6dbf2c85ffe161b138580a27d313cc573079 | |
parent | 6a69f5fd9b736bccbd29182e65b0afab7fd91094 (diff) | |
download | XMonadContrib-cbc472335083c975ad0704d5e3f5e4fbf41e9528.tar.gz XMonadContrib-cbc472335083c975ad0704d5e3f5e4fbf41e9528.tar.xz XMonadContrib-cbc472335083c975ad0704d5e3f5e4fbf41e9528.zip |
Don't use tabs in EwmhDesktops
Ignore-this: 59b1ade240aa75cf448620cd7a37579b
darcs-hash:20090813200119-7f603-2e4dbfc698796446602334609b244d79e5276f61.gz
Diffstat (limited to '')
-rw-r--r-- | XMonad/Hooks/EwmhDesktops.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Hooks/EwmhDesktops.hs b/XMonad/Hooks/EwmhDesktops.hs index db8d4fb..720376f 100644 --- a/XMonad/Hooks/EwmhDesktops.hs +++ b/XMonad/Hooks/EwmhDesktops.hs @@ -153,9 +153,9 @@ handle ClientMessageEvent { else if mt `elem` a_ignore then do return () else do - -- The Message is unknown to us, but that is ok, not all are meant - -- to be handled by the wndow manager - return () + -- The Message is unknown to us, but that is ok, not all are meant + -- to be handled by the window manager + return () handle _ = return () |