evas: warn dev to clip on a rect and not on an other object
authorMichael BOUCHAUD <michael.bouchaud@gmail.com>
Fri, 17 Jun 2011 10:55:26 +0000 (10:55 +0000)
committerMichael BOUCHAUD <michael.bouchaud@gmail.com>
Fri, 17 Jun 2011 10:55:26 +0000 (10:55 +0000)
SVN revision: 60443

legacy/evas/src/lib/canvas/evas_clip.c

index 9a69dc8..95f30f2 100644 (file)
@@ -179,7 +179,11 @@ evas_object_clip_set(Evas_Object *obj, Evas_Object *clip)
    if (obj == clip) return;
    if (evas_object_intercept_call_clip_set(obj, clip)) return;
    // illegal to set anything but a rect as a clip
-   if (clip->type != o_rect_type) return;
+   if (clip->type != o_rect_type)
+     {
+        ERR("For now a clip on other object than a rectangle is disabled\n");
+        return;
+     }
    if (obj->smart.smart)
      {
        if (obj->smart.smart->smart_class->clip_set)