Event: Fix first if in enternotify.
This commit is contained in:
parent
a3f144f642
commit
3441a5ca67
@ -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))
|
||||
|
||||
@ -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 */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user