elm elm_map.c: Fixed build break when emap is installed. Patch by

Taehwan Kim <ohpowel@gmail.com>

On Tue, Feb 21, 2012 at 8:02 PM, Bluezery <ohpowel@gmail.com> wrote:
> 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

SVN revision: 68214
This commit is contained in:
Daniel Juyung Seo 2012-02-21 11:19:09 +00:00
parent 111b243b1b
commit ddec0677d0
1 changed files with 2 additions and 2 deletions

View File

@ -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;