edje_edit: add 'fixed' support to code generation

Reviewers: cedric, seoz, Hermet, raster, Sergeant_Whitespace

Reviewed By: Sergeant_Whitespace

Subscribers: Sergeant_Whitespace, cedric, reutskiy.v.v

Differential Revision: https://phab.enlightenment.org/D2267
This commit is contained in:
Andrii Kroitor 2015-04-06 13:24:40 +09:00 committed by ChunEon Park
parent 8c350554de
commit 7bbb04d6fa
1 changed files with 2 additions and 1 deletions

View File

@ -10707,7 +10707,8 @@ _edje_generate_source_of_state(Evas_Object *obj, const char *part, const char *s
TO_DOUBLE(pd->align.y),
buf, &ret);
//TODO Support fixed
if (pd->fixed.w || pd->fixed.h)
BUF_APPENDF(I5"fixed: %d %d;\n", pd->fixed.w, pd->fixed.h);
if (pd->min.w || pd->min.h)
BUF_APPENDF(I5"min: %d %d;\n", pd->min.w, pd->min.h);