2011/6/24 Enlightenment SVN <[email protected]>: > Log: > Evas events: handle MOUSE_OUT stuff only if there's no mouse grab on. > > ATTENTION: if you find any weird issues, please let me know. After testing > here, reading the code and discussing it with raster I decided to commit it, > but this is a very sensitive area. :P >
That's what she said. > Author: tasn > Date: 2011-06-23 23:59:30 -0700 (Thu, 23 Jun 2011) > New Revision: 60651 > Trac: http://trac.enlightenment.org/e/changeset/60651 > > Modified: > trunk/evas/src/lib/canvas/evas_events.c > > Modified: trunk/evas/src/lib/canvas/evas_events.c > =================================================================== > --- trunk/evas/src/lib/canvas/evas_events.c 2011-06-24 05:35:33 UTC (rev > 60650) > +++ trunk/evas/src/lib/canvas/evas_events.c 2011-06-24 06:59:30 UTC (rev > 60651) > @@ -417,7 +417,7 @@ > _evas_post_event_callback_call(e); > } > > - if (!e->pointer.button) > + if (e->pointer.mouse_grabbed == 0) > { > _post_up_handle(e, timestamp, data); > } > @@ -998,7 +998,7 @@ > if (e->delete_me) break; > } > if (copy) copy = eina_list_free(copy); > - if (!_post_up_handle(e, timestamp, data)) > + if ((e->pointer.mouse_grabbed == 0) && !_post_up_handle(e, timestamp, > data)) > _evas_post_event_callback_call(e); > _evas_unwalk(e); > } > > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure contains a > definitive record of customers, application performance, security > threats, fraudulent activity and more. Splunk takes this data and makes > sense of it. Business sense. IT sense. Common sense.. > http://p.sf.net/sfu/splunk-d2d-c1 > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense.. http://p.sf.net/sfu/splunk-d2d-c1 _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
