jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=12e09d2d2a78394f41c80a25c10b63c3db35d7e1

commit 12e09d2d2a78394f41c80a25c10b63c3db35d7e1
Author: Subhransu Mohanty <[email protected]>
Date:   Tue Jul 26 11:33:26 2016 +0900

    edje: fixed issue with vector part state inheritance.
    
    Reviewers: cedric, jpeg
    
    Reviewed By: jpeg
    
    Subscribers: cedric, jpeg
    
    Differential Revision: https://phab.enlightenment.org/D4190
---
 src/bin/edje/edje_cc_handlers.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index de249e4..6f91af6 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -8275,7 +8275,10 @@ st_collections_group_parts_part_description_inherit(void)
            }
       case EDJE_PART_TYPE_VECTOR:
            {
-              // TODO
+              Edje_Part_Description_Vector *ied = 
(Edje_Part_Description_Vector *) ed;
+              Edje_Part_Description_Vector *iparent = 
(Edje_Part_Description_Vector *) parent;
+              ied->vg.set = iparent->vg.set;
+              ied->vg.id = iparent->vg.id;
               break;
            }
      }

-- 


Reply via email to