yoz pushed a commit to branch edje-1.7.

commit a67e5b0f6008c5d3d32553ecec554ad233f66299
Author: Michael Bouchaud <[email protected]>
Date:   Thu Sep 5 23:37:07 2013 +0200

    edje: fix recursive scale_set on edje_object
---
 src/lib/edje_util.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/edje_util.c b/src/lib/edje_util.c
index 551be5d..35591ce 100644
--- a/src/lib/edje_util.c
+++ b/src/lib/edje_util.c
@@ -355,8 +355,8 @@ edje_object_scale_set(Evas_Object *obj, double scale)
    if (!ed) return EINA_FALSE;
    if (ed->scale == scale) return EINA_TRUE;
    ed->scale = FROM_DOUBLE(scale);
-   EINA_LIST_FOREACH(ed->subobjs, l, o)
-     edje_object_scale_set(o, scale);
+   EINA_LIST_FOREACH(ed->groups, l, ged)
+     edje_object_scale_set(ged->obj, scale);
    for (i = 0; i < ed->table_parts_size; ++i)
      {
         Edje_Real_Part *ep;

-- 

------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk

Reply via email to