enable comp object image data refresh if a dirty call is made with no damages

this indicates that a buffer has changed, but there is no new data to draw
This commit is contained in:
Mike Blumenkrantz 2016-02-22 17:48:35 -05:00
parent 89df60a6cd
commit 41e95cc3f4
1 changed files with 1 additions and 1 deletions

View File

@ -3717,7 +3717,7 @@ e_comp_object_dirty(Evas_Object *obj)
if (!dirty) w = h = 1;
evas_object_image_pixels_dirty_set(cw->obj, cw->blanked ? 0 : dirty);
if (!dirty)
evas_object_image_data_set(cw->obj, NULL);
evas_object_image_data_set(cw->obj, e_pixmap_image_data_get(cw->ec->pixmap));
evas_object_image_size_set(cw->obj, w, h);
RENDER_DEBUG("SIZE [%p]: %dx%d", cw->ec, w, h);