From 0ba369330ddf06427680b730e129791cc05ab240 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 7 Mar 2016 14:43:02 -0500 Subject: [PATCH] reverse ordering for x11 client mouse in NotifyVirtual and NotifyInferior details apparently I did this backwards. ref 7b7dbbc24955f64f3d84289cc5eccd4f6bda1527 --- src/bin/e_comp_x.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index ea5dec398..987f441ba 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -2248,13 +2248,13 @@ _e_comp_x_mouse_in(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_M { if (ev->detail == ECORE_X_EVENT_DETAIL_INFERIOR) { - if (ev->win != e_client_util_win_get(ec)) return ECORE_CALLBACK_RENEW; - if (ev->event_win != e_client_util_pwin_get(ec)) return ECORE_CALLBACK_RENEW; + if (ev->win != e_client_util_pwin_get(ec)) return ECORE_CALLBACK_RENEW; + if (ev->event_win != e_client_util_win_get(ec)) return ECORE_CALLBACK_RENEW; } if (ev->detail == ECORE_X_EVENT_DETAIL_VIRTUAL) { - if (ev->win != e_client_util_pwin_get(ec)) return ECORE_CALLBACK_RENEW; - if (ev->event_win != e_client_util_win_get(ec)) return ECORE_CALLBACK_RENEW; + if (ev->win != e_client_util_win_get(ec)) return ECORE_CALLBACK_RENEW; + if (ev->event_win != e_client_util_pwin_get(ec)) return ECORE_CALLBACK_RENEW; } if (!evas_object_visible_get(ec->frame)) return ECORE_CALLBACK_RENEW; }