From 396e256fc647661c959402eb899899b5ce1cd2af Mon Sep 17 00:00:00 2001 From: Michael BOUCHAUD Date: Fri, 17 Jun 2011 10:55:26 +0000 Subject: [PATCH] evas: warn dev to clip on a rect and not on an other object SVN revision: 60443 --- legacy/evas/src/lib/canvas/evas_clip.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_clip.c b/legacy/evas/src/lib/canvas/evas_clip.c index 9a69dc8b6c..95f30f20cb 100644 --- a/legacy/evas/src/lib/canvas/evas_clip.c +++ b/legacy/evas/src/lib/canvas/evas_clip.c @@ -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)