edje: fixed issue with vector part state inheritance.

Reviewers: cedric, jpeg

Reviewed By: jpeg

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4190
This commit is contained in:
Subhransu Mohanty 2016-07-26 11:33:26 +09:00 committed by Jean-Philippe Andre
parent f38dbd39f5
commit 12e09d2d2a
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}
}