On Fri, 17 Jun 2011 08:02:00 +0200 "[email protected]" <[email protected]> said:
> On Thu, Jun 16, 2011 at 11:25 PM, Vincent Torri <[email protected]> wrote: > > > > > > backport to 1.0 ? > > > > it is fix for a feature that was introduced after 1.0. I'm not in > charge to decide whether to backport the whole thing :) you dont. not for svn (1.1) features and their fixes > > Vincent > > > > On Thu, 16 Jun 2011, Enlightenment SVN wrote: > > > >> Log: > >> ecore: fix dnd for 'shaped' windows. added rect offset to 'inside' check > >> > >> > >> Author: jeffdameth > >> Date: 2011-06-16 14:10:41 -0700 (Thu, 16 Jun 2011) > >> New Revision: 60409 > >> Trac: http://trac.enlightenment.org/e/changeset/60409 > >> > >> Modified: > >> trunk/ecore/src/lib/ecore_x/xlib/ecore_x_window.c > >> > >> Modified: trunk/ecore/src/lib/ecore_x/xlib/ecore_x_window.c > >> =================================================================== > >> --- trunk/ecore/src/lib/ecore_x/xlib/ecore_x_window.c 2011-06-16 21:08:05 > >> UTC (rev 60408) +++ trunk/ecore/src/lib/ecore_x/xlib/ecore_x_window.c > >> 2011-06-16 21:10:41 UTC (rev 60409) @@ -1014,8 +1014,8 @@ > >> { > >> if ((x >= s->x + bx + rects[i].x) && > >> (y >= s->y + by + rects[i].y) && > >> - (x < (int)(s->x + bx + rects[i].width)) && > >> - (y < (int)(s->y + by + rects[i].height))) > >> + (x < (int)(s->x + bx + rects[i].x + rects[i].width)) && > >> + (y < (int)(s->y + by + rects[i].y + rects[i].height))) > >> { > >> inside = 1; > >> break; > >> > >> > >> ------------------------------------------------------------------------------ > >> EditLive Enterprise is the world's most technically advanced content > >> authoring tool. Experience the power of Track Changes, Inline Image > >> Editing and ensure content is compliant with Accessibility Checking. > >> http://p.sf.net/sfu/ephox-dev2dev > >> _______________________________________________ > >> enlightenment-svn mailing list > >> [email protected] > >> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > >> > >> > > > > ------------------------------------------------------------------------------ > > EditLive Enterprise is the world's most technically advanced content > > authoring tool. Experience the power of Track Changes, Inline Image > > Editing and ensure content is compliant with Accessibility Checking. > > http://p.sf.net/sfu/ephox-dev2dev > > _______________________________________________ > > enlightenment-devel mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > > > > ------------------------------------------------------------------------------ > EditLive Enterprise is the world's most technically advanced content > authoring tool. Experience the power of Track Changes, Inline Image > Editing and ensure content is compliant with Accessibility Checking. > http://p.sf.net/sfu/ephox-dev2dev > _______________________________________________ > enlightenment-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) [email protected] ------------------------------------------------------------------------------ EditLive Enterprise is the world's most technically advanced content authoring tool. Experience the power of Track Changes, Inline Image Editing and ensure content is compliant with Accessibility Checking. http://p.sf.net/sfu/ephox-dev2dev _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
