From 41e95cc3f4b275a2e6af393ef767f7bf530714b7 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 22 Feb 2016 17:48:35 -0500 Subject: [PATCH] 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 --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 0bc9055b7..514d66f70 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -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);