Hello,

Previous my giant patches made build errors when EMAP is enabled. This
patch fixed this.
'ox'  & 'oy' is almost useless values (-1 or 0 value).  I will fix and
upgrade all things related EMAP later.
Please review this patch

-- 
BRs,
Kim.
Index: src/lib/elm_map.c
===================================================================
--- src/lib/elm_map.c	(리비전 68210)
+++ src/lib/elm_map.c	(작업 사본)
@@ -1470,11 +1470,11 @@ _track_place(Widget_Data *wd)
            if( !(ymin < py && ymax < py) && !(ymin > py+oh && ymax > py+oh))
            {
               //display the route
-              evas_object_move(route, xmin - px + ox, ymin - py + oy);
+              evas_object_move(route, xmin - px, ymin - py);
               evas_object_resize(route, xmax - xmin, ymax - ymin);
 
               evas_object_raise(route);
-              _obj_rotate(wd->obj, route);
+              _obj_rotate(wd, route);
               evas_object_show(route);
 
               continue;
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to