Removing masks for unhandled enter and leaving events.

This commit is contained in:
Christoph Lohmann 2012-09-05 22:39:09 +02:00
parent dd0b7a077f
commit 4a4ae19158
1 changed files with 1 additions and 3 deletions

4
st.c
View File

@ -1960,8 +1960,7 @@ xinit(void) {
attrs.bit_gravity = NorthWestGravity;
attrs.event_mask = FocusChangeMask | KeyPressMask
| ExposureMask | VisibilityChangeMask | StructureNotifyMask
| ButtonMotionMask | ButtonPressMask | ButtonReleaseMask
| EnterWindowMask | LeaveWindowMask;
| ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
attrs.colormap = xw.cmap;
parent = opt_embed ? strtol(opt_embed, NULL, 0) : XRootWindow(xw.dpy, xw.scr);
@ -2047,7 +2046,6 @@ void
xcopy() {
XdbeSwapInfo swpinfo[1] = {{xw.win, XdbeCopied}};
XdbeSwapBuffers(xw.dpy, swpinfo, 1);
}
void