all focus ungrab events = noop for focus setting, not just notifypointer

This commit is contained in:
Mike Blumenkrantz 2013-06-12 08:41:28 +01:00
parent 84793983e1
commit 2543d91f5e
1 changed files with 4 additions and 1 deletions

View File

@ -5860,7 +5860,10 @@ _e_border_cb_window_focus_in(void *data __UNUSED__,
}
else if (e->mode == ECORE_X_EVENT_MODE_UNGRAB)
{
if (e->detail == ECORE_X_EVENT_DETAIL_POINTER) return ECORE_CALLBACK_PASS_ON;
/* this seems to break winlist...
if (e->detail == ECORE_X_EVENT_DETAIL_POINTER)
*/
return ECORE_CALLBACK_PASS_ON;
}
/* ignore focus in from !take_focus windows, we just gave it em */