Just discovered an interesting issue with evas:
        evas_object_clip_set(obj,obj) is all bad.

This one line fixes the problem (which is mostly a PEBKAC, but still).

--- src/lib/canvas/evas_clip.c  16 Nov 2006 03:20:24 -0000      1.26
+++ src/lib/canvas/evas_clip.c  12 Apr 2007 02:48:10 -0000
@@ -169,6 +169,7 @@
    return;
    MAGIC_CHECK_END();
    if (obj->cur.clipper == clip) return;
+   if (obj == clip) return;
    if (obj->smart.smart)
      {
        if (obj->smart.smart->smart_class->clip_set)


        Regards,
        nash


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to