removed NET_ACTIVE_WINDOW handling

This commit is contained in:
Anselm R.Garbe
2006-08-08 18:12:18 +02:00
parent 92e55c7c53
commit c225e1afc2
4 changed files with 1 additions and 20 deletions

13
event.c
View File

@ -145,18 +145,6 @@ buttonpress(XEvent *e)
}
}
static void
clientmessage(XEvent *e)
{
Client *c;
XClientMessageEvent *ev = &e->xclient;
if(ev->message_type == netatom[NetActiveWindow]) {
if((c = getclient(ev->window)) && c->tags[tsel])
focus(c);
}
}
static void
configurerequest(XEvent *e)
{
@ -351,7 +339,6 @@ unmapnotify(XEvent *e)
void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
[ClientMessage] = clientmessage,
[ConfigureRequest] = configurerequest,
[DestroyNotify] = destroynotify,
[EnterNotify] = enternotify,