diff --git a/src/event.c b/src/event.c index 36fd7f6..3ea6348 100644 --- a/src/event.c +++ b/src/event.c @@ -325,9 +325,9 @@ enternotify(XCrossingEvent *ev) Client *c; int n; - if((ev->mode != NotifyNormal)) - // || ev->detail == NotifyInferior) - // && ev->window != ROOT) + if((ev->mode != NotifyNormal + || ev->detail == NotifyInferior) + && ev->window != ROOT) return; if((c = client_gb_win(ev->window)) diff --git a/src/wmfs.h b/src/wmfs.h index 30c79d9..3620896 100644 --- a/src/wmfs.h +++ b/src/wmfs.h @@ -234,7 +234,6 @@ char* alias_to_str(char *conf_choice); /* }}} */ XRectangle get_mouse_pos(void); void spawn(const char *str, ...); -Pixmap get_root_pixmap(void); void uicb_spawn(uicb_t); /* tag.c */