diff options
author | ChunEon Park <hermet@hermet.pe.kr> | 2013-04-14 05:36:28 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2013-04-14 05:36:28 +0900 |
commit | 59bd729ca958eaed878622feacbc4ef51a1a3221 (patch) | |
tree | fc65ff186d16c7d5dae547f1ddca02a89185c854 /src | |
parent | 6b9a895c59448a1e8ce5b7786943cebf7e5bc4fa (diff) | |
download | efl-59bd729ca958eaed878622feacbc4ef51a1a3221.tar.gz |
evas/image - actually, no need to check both. one is enough.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/evas/canvas/evas_object_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 59b72d6928..44d27d7d87 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c @@ -4042,7 +4042,7 @@ evas_object_image_render_pre(Evas_Object *eo_obj, Evas_Object_Protected_Data *ob /* it's not visible - we accounted for it appearing or not so just abort */ if (!is_v) goto done; /* clipper changed this is in addition to anything else for obj */ - if (is_v && was_v) + if (was_v) evas_object_render_pre_clipper_change(&e->clip_changes, eo_obj); /* if we restacked (layer or just within a layer) and don't clip anyone */ if (obj->restack) |