fix another magic failure in e_icon

SVN revision: 71983
This commit is contained in:
Mike Blumenkrantz 2012-06-12 07:23:00 +00:00
parent b0079e53ad
commit ceea15f961
1 changed files with 2 additions and 1 deletions

View File

@ -540,7 +540,8 @@ e_icon_size_get(const Evas_Object *obj, int *w, int *h)
if (h) *h = 0;
return;
}
evas_object_image_size_get(sd->obj, w, h);
if (strcmp(evas_object_type_get(sd->obj), "edje"))
evas_object_image_size_get(sd->obj, w, h);
}
EAPI Eina_Bool