diff options
author | ChunEon Park <hermet@hermet.pe.kr> | 2013-08-18 16:31:43 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2013-08-18 16:31:43 +0900 |
commit | cbfba2fd595ed5848592b486c4ec1a7875a222de (patch) | |
tree | 0ae8937b5452dbcc2b95059e58639030ed6b146b /src/lib/evas/include | |
parent | 75ccce5706d814b1af7584e1f462065622e19b0b (diff) |
evas - should be rendered even if non-smart proxy object doesn't affected by clipper.
Diffstat (limited to 'src/lib/evas/include')
-rw-r--r-- | src/lib/evas/include/evas_inline.x | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evas/include/evas_inline.x b/src/lib/evas/include/evas_inline.x index 00c4f9ad3e..3770629c6a 100644 --- a/src/lib/evas/include/evas_inline.x +++ b/src/lib/evas/include/evas_inline.x | |||
@@ -155,8 +155,8 @@ evas_object_is_proxy_visible(Evas_Object *eo_obj, Evas_Object_Protected_Data *ob | |||
155 | { | 155 | { |
156 | if ((obj->cur->visible) && | 156 | if ((obj->cur->visible) && |
157 | //FIXME: Check the cached clipper visible properly. | 157 | //FIXME: Check the cached clipper visible properly. |
158 | ((obj->cur->clipper && obj->cur->clipper->cur->visible) || | 158 | ((obj->cur->cache.clip.visible) || (obj->is_smart)) && |
159 | (obj->is_smart)) && | 159 | (obj->is_smart || !obj->cur->clipper || obj->cur->clipper->cur->visible) && |
160 | ((obj->cur->cache.clip.a > 0 && obj->cur->render_op == EVAS_RENDER_BLEND) | 160 | ((obj->cur->cache.clip.a > 0 && obj->cur->render_op == EVAS_RENDER_BLEND) |
161 | || obj->cur->render_op != EVAS_RENDER_BLEND)) | 161 | || obj->cur->render_op != EVAS_RENDER_BLEND)) |
162 | { | 162 | { |