Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
c95bf3d
)
removed crappy createnotify handler
author
Anselm R. Garbe <
[email protected]
>
Tue, 19 Jun 2007 07:04:21 +0000
(09:04 +0200)
committer
Anselm R. Garbe <
[email protected]
>
Tue, 19 Jun 2007 07:04:21 +0000
(09:04 +0200)
event.c
patch
|
blob
|
history
diff --git
a/event.c
b/event.c
index
1da9a6b
..
ad4e271
100644
(file)
--- a/
event.c
+++ b/
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
destroynotify(XEvent *e) {
Client *c;
static void
destroynotify(XEvent *e) {
Client *c;
@@
-363,7
+350,6
@@
void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
[ConfigureRequest] = configurerequest,
[ConfigureNotify] = configurenotify,
[ButtonPress] = buttonpress,
[ConfigureRequest] = configurerequest,
[ConfigureNotify] = configurenotify,
-/* [CreateNotify] = createnotify, */
[DestroyNotify] = destroynotify,
[EnterNotify] = enternotify,
[LeaveNotify] = leavenotify,
[DestroyNotify] = destroynotify,
[EnterNotify] = enternotify,
[LeaveNotify] = leavenotify,