diff options
author | David Roundy <droundy@darcs.net> | 2007-06-23 23:41:25 +0200 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2007-06-23 23:41:25 +0200 |
commit | f4f7742f67bed980ca5f4cf0148f7644f22d49a3 (patch) | |
tree | d871676f962b9978e738c22f1151977f107a603d | |
parent | f3ecff6e66979d7df9a1c3733e08e89abab2c5aa (diff) | |
download | xmonad-f4f7742f67bed980ca5f4cf0148f7644f22d49a3.tar.gz xmonad-f4f7742f67bed980ca5f4cf0148f7644f22d49a3.tar.xz xmonad-f4f7742f67bed980ca5f4cf0148f7644f22d49a3.zip |
broadcast unidentified events.
This change is independent of the doLayout change I just sent in, but fixes
the problem that change introduces in Decoration, by ensuring that all
Layouts get redraw events. I think this is the correct behavior.
darcs-hash:20070623214125-72aca-deae94c4f656e2396a1e569b0ad956d625ed05f5.gz
Diffstat (limited to '')
-rw-r--r-- | Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -226,4 +226,4 @@ handle e@(ConfigureRequestEvent {ev_window = w}) = withDisplay $ \dpy -> do -- the root may have configured handle (ConfigureEvent {ev_window = w}) = whenX (isRoot w) rescreen -handle e = sendMessage e -- trace (eventName e) -- ignoring +handle e = broadcastMessage e -- trace (eventName e) -- ignoring |