Revert "Always clear the mirror image data pointer"

This reverts commit 326d638ba2.

This, for some reason, resulted in client surfaces being blacked out,
despite only ever changing mirror surfaces.
This commit is contained in:
Derek Foreman 2016-06-28 14:15:31 -05:00
parent ab5879b926
commit a04ee8e253
1 changed files with 2 additions and 1 deletions

View File

@ -3799,8 +3799,9 @@ e_comp_object_dirty(Evas_Object *obj)
{
//evas_object_image_border_set(o, bx, by, bxx, byy);
//evas_object_image_border_center_fill_set(o, EVAS_BORDER_FILL_SOLID);
evas_object_image_data_set(o, NULL);
evas_object_image_pixels_dirty_set(o, dirty);
if (!dirty)
evas_object_image_data_set(o, NULL);
evas_object_image_size_set(o, w, h);
visible |= evas_object_visible_get(o);
}