Elm_Image rely on Evas_Image ability to rotate content. There is no
pixels manipulation involved that require an update_add here. In fact
this cause a bug where the content would disapear due to evas trying
to get some pixels data that are not where it think they are.
evas_object_image_orient_set(sd->img, orient);
sd->orient = orient;
- evas_object_image_size_get(sd->img, &iw, &ih);
- evas_object_image_data_update_add(sd->img, 0, 0, iw, ih);
_elm_image_internal_sizing_eval(obj, sd);
}