Another typo in ALT+C convert modifiers; it was copying data from the

wrong object, which worked until a few days ago when I fixed a bug
in add_object(). :)
This commit is contained in:
Ton Roosendaal
2005-11-05 21:40:35 +00:00
parent ebfd6de1dc
commit 8b8daec576

View File

@@ -2246,7 +2246,7 @@ void convertmenu(void)
G.totmesh++;
/* make new mesh data from the original copy */
dm= mesh_create_derived_no_deform(ob1, NULL);
dm= mesh_create_derived_no_deform(ob, NULL);
dlm= dm->convertToDispListMesh(dm, 0);
displistmesh_to_mesh(dlm, ob1->data);
dm->release(dm);