From 81b61634c4e9b9413183c81a8228f703644a63e5 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 2 Oct 2015 13:40:55 -0400 Subject: [PATCH] add RENDER_DEBUG for forced renders when setting dirty flag --- src/bin/e_comp_object.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 77d4ab51c..429a8311d 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3571,6 +3571,7 @@ e_comp_object_dirty(Evas_Object *obj) evas_object_smart_callback_call(obj, "dirty", NULL); if (cw->visible || (!visible) || (!cw->pending_updates) || cw->native) return; /* force render if main object is hidden but mirrors are visible */ + RENDER_DEBUG("FORCING RENDER %p", cw->ec); e_comp_object_render(obj); }