discomfitor pushed a commit to branch enlightenment-0.20.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=5580a040abfec6f5bdd21464cc982cbd13591c67

commit 5580a040abfec6f5bdd21464cc982cbd13591c67
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Mar 7 14:43:02 2016 -0500

    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 d5ec68c..70d7971 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;
      }

-- 


Reply via email to