edje_edit: Actually check for z if we want to append z

Classical copy and paste error.

CID: 1224760
This commit is contained in:
Stefan Schmidt 2014-08-08 14:37:27 +02:00
parent f6c12e135f
commit 0f658dc09d
1 changed files with 1 additions and 1 deletions

View File

@ -9987,7 +9987,7 @@ _edje_generate_source_of_state(Evas_Object *obj, const char *part, const char *s
BUF_APPENDF(I7"x: %g;\n", TO_DOUBLE(pd->map.rot.x));
if (TO_DOUBLE(pd->map.rot.y) != 0.0)
BUF_APPENDF(I7"y: %g;\n", TO_DOUBLE(pd->map.rot.y));
if (TO_DOUBLE(pd->map.rot.x) != 0.0)
if (TO_DOUBLE(pd->map.rot.z) != 0.0)
BUF_APPENDF(I7"z: %g;\n", TO_DOUBLE(pd->map.rot.z));
BUF_APPEND(I6"}\n");