Browse Source

Removing masks for unhandled enter and leaving events.

master
Christoph Lohmann 12 years ago
parent
commit
4a4ae19158
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      st.c

+ 1
- 3
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


Loading…
Cancel
Save