fix new map bug! aaagh. i think this came in post 1.0 - happy now tho.

SVN revision: 58588
This commit is contained in:
Carsten Haitzler 2011-04-12 09:44:50 +00:00
parent 50e748b8cd
commit f67fbf23e5
1 changed files with 10 additions and 1 deletions

View File

@ -61,12 +61,21 @@ _evas_map_calc_map_geometry(Evas_Object *obj)
ch = 1; ch = 1;
break; break;
} }
if ((p->x != p2->x) ||
(p->y != p2->y) ||
(p->z != p2->z))
{
ch = 1;
break;
}
} }
} }
else else
ch = 1; ch = 1;
} }
else
ch = 1;
p = obj->cur.map->points; p = obj->cur.map->points;
p_end = p + obj->cur.map->count; p_end = p + obj->cur.map->count;
x1 = p->x; x1 = p->x;