edje_cc: remove 'inherit_only' groups from result edj file

The 'inherit_only' groups are helpers and no sense to save it to edj
file.

@fix
This commit is contained in:
Vyacheslav Reutskiy 2017-02-01 15:02:46 +02:00
parent d4673c0740
commit c3733a213b
1 changed files with 6 additions and 1 deletions

View File

@ -3655,7 +3655,12 @@ data_process_lookups(void)
}
find = eina_hash_find(edje_file->collection, pc->part);
if (find && find->id == pc->id)
continue ;
{
if ( ((Edje_Part_Collection_Parser*)pc)->inherit_only)
eina_hash_del_by_data(edje_file->collection, find);
else
continue ;
}
EINA_LIST_FOREACH(aliases, l3, alias)
if (alias->id == pc->id)