Edje: Edje_Edit - fix typo in code generation of BOX part

@fix
This commit is contained in:
Vitalii Vorobiov 2015-03-25 17:17:49 +02:00
parent e56548aa33
commit e4487a31fe
1 changed files with 1 additions and 1 deletions

View File

@ -10781,7 +10781,7 @@ _edje_generate_source_of_state(Evas_Object *obj, const char *part, const char *s
buf, &ret);
if (box->box.padding.x != 0 || box->box.padding.y != 0)
BUF_APPENDF(I6"padding: %d %d;\n", box->box.padding.y, box->box.padding.y);
BUF_APPENDF(I6"padding: %d %d;\n", box->box.padding.x, box->box.padding.y);
if (box->box.min.h || box->box.min.v)
BUF_APPENDF(I6"min: %d %d;\n", box->box.min.h, box->box.min.v);