removed crappy createnotify handler
This commit is contained in:
parent
c95bf3db9d
commit
51a94a2f14
14
event.c
14
event.c
|
@ -224,19 +224,6 @@ configurenotify(XEvent *e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
createnotify(XEvent *e) {
|
|
||||||
static XWindowAttributes wa;
|
|
||||||
XCreateWindowEvent *ev = &e->xcreatewindow;
|
|
||||||
|
|
||||||
if(!XGetWindowAttributes(dpy, ev->window, &wa))
|
|
||||||
return;
|
|
||||||
if(wa.override_redirect)
|
|
||||||
return;
|
|
||||||
if(!getclient(ev->window) && (wa.map_state == IsViewable))
|
|
||||||
manage(ev->window, &wa);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
destroynotify(XEvent *e) {
|
destroynotify(XEvent *e) {
|
||||||
Client *c;
|
Client *c;
|
||||||
|
@ -363,7 +350,6 @@ void (*handler[LASTEvent]) (XEvent *) = {
|
||||||
[ButtonPress] = buttonpress,
|
[ButtonPress] = buttonpress,
|
||||||
[ConfigureRequest] = configurerequest,
|
[ConfigureRequest] = configurerequest,
|
||||||
[ConfigureNotify] = configurenotify,
|
[ConfigureNotify] = configurenotify,
|
||||||
/* [CreateNotify] = createnotify, */
|
|
||||||
[DestroyNotify] = destroynotify,
|
[DestroyNotify] = destroynotify,
|
||||||
[EnterNotify] = enternotify,
|
[EnterNotify] = enternotify,
|
||||||
[LeaveNotify] = leavenotify,
|
[LeaveNotify] = leavenotify,
|
||||||
|
|
Loading…
Reference in New Issue