summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-03-07 14:43:02 -0500
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-03-07 14:43:02 -0500
commit0ba369330ddf06427680b730e129791cc05ab240 (patch)
tree08558abe8ebdc8a200ef5609c68de57b2eef49b5
parentb4559055a746ff2500ea52ada18848b09096d81c (diff)
downloadenlightenment-0ba369330ddf06427680b730e129791cc05ab240.tar.gz
reverse ordering for x11 client mouse in NotifyVirtual and NotifyInferior details
apparently I did this backwards. ref 7b7dbbc24955f64f3d84289cc5eccd4f6bda1527
-rw-r--r--src/bin/e_comp_x.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c
index ea5dec3985..987f441bac 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;
}