summaryrefslogtreecommitdiffstats
path: root/XMonad/Core.hs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-09-11 06:34:35 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-09-11 06:34:35 +0200
commit5ecc5d245c1733fcf6433c1ed710b715b8a1eabb (patch)
treea563a5a4c07e3a54ec558fdb474b17db6bf82163 /XMonad/Core.hs
parent96dba46557b2e18885c2c90c431dc8e4516f83ee (diff)
downloadmetatile-5ecc5d245c1733fcf6433c1ed710b715b8a1eabb.tar
metatile-5ecc5d245c1733fcf6433c1ed710b715b8a1eabb.zip
Correctly handle resize requests
Diffstat (limited to 'XMonad/Core.hs')
-rw-r--r--XMonad/Core.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs
index 91defbf..18ca213 100644
--- a/XMonad/Core.hs
+++ b/XMonad/Core.hs
@@ -132,6 +132,7 @@ data XConfig l = XConfig
, focusFollowsMouse :: !Bool -- ^ Whether window entry events can change focus
, clickJustFocuses :: !Bool -- ^ False to make a click which changes focus to be additionally passed to the window
, clientMask :: !EventMask -- ^ The client events that xmonad is interested in
+ , frameMask :: !EventMask -- ^ The frame events that xmonad is interested in
, rootMask :: !EventMask -- ^ The root events that xmonad is interested in
}