aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorokan2012-12-18 18:39:55 +0000
committerokan2012-12-18 18:39:55 +0000
commitb383e573a5430c56c75ab469210bbe714c0d83b5 (patch)
treedcca9e70f041276cbde864a5f6f94ccc53acf151 /screen.c
parente21fb875f4ef5249d432be2fbd2d21148aaf8dd0 (diff)
downloadcwm-b383e573a5430c56c75ab469210bbe714c0d83b5.tar.gz
expand CHILDMASK
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/screen.c b/screen.c
index 2f04911..acfe5eb 100644
--- a/screen.c
+++ b/screen.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: screen.c,v 1.39 2012/12/17 18:34:06 okan Exp $
+ * $OpenBSD: screen.c,v 1.40 2012/12/18 18:39:55 okan Exp $
*/
#include <sys/param.h>
@@ -62,8 +62,9 @@ screen_init(struct screen_ctx *sc, u_int which)
menu_init(sc);
rootattr.cursor = Cursor_normal;
- rootattr.event_mask = CHILDMASK|PropertyChangeMask|EnterWindowMask|
- LeaveWindowMask|ColormapChangeMask|BUTTONMASK;
+ rootattr.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|
+ PropertyChangeMask|EnterWindowMask|LeaveWindowMask|
+ ColormapChangeMask|BUTTONMASK;
XChangeWindowAttributes(X_Dpy, sc->rootwin,
CWEventMask|CWCursor, &rootattr);