Evas: Another fix for no-render
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 29 Mar 2016 09:37:12 +0000 (18:37 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Tue, 29 Mar 2016 10:01:17 +0000 (19:01 +0900)
Despite the previous patches, no-render objects could be
partially visible. Eg a fileselector marked as no-render
would have its file list visible. All other children were not
shown.

I think this is not the last fix for this feature, but
eventually source_visible will have to die internally
and be replaced by no-render.

Thanks @yakov-g for the report.

src/lib/evas/include/evas_inline.x

index 8f3644c..f6cd540 100644 (file)
@@ -124,6 +124,8 @@ evas_object_is_source_invisible(Evas_Object *eo_obj EINA_UNUSED, Evas_Object_Pro
 {
    if (obj->parent_cache.src_invisible_valid)
      return obj->parent_cache.src_invisible;
+   if (obj->no_render)
+     return EINA_TRUE;
    if ((obj->proxy->proxies || obj->proxy->proxy_textures) && obj->proxy->src_invisible) return 1;
    if (!obj->smart.parent) return 0;
    if (obj->mask->is_mask) return 0;