Cleanup: Simplify mesh to legacy curve logic #105870

Merged
Hans Goudey merged 2 commits from bonj/blender:cleanup/convert-mesh-to-curve into main 2023-03-18 03:49:36 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b66cd0e4c4 - Show all commits

View File

@ -531,7 +531,7 @@ void BKE_mesh_to_curve_nurblist(const Mesh *me, ListBase *nurblist, const int ed
if (edge->v1 == endVert) {
endVert = edge->v2;
appendPolyLineVert(&polyline, edge->v2);
appendPolyLineVert(&polyline, endVert);
totpoly++;
BLI_freelinkN(&edges, edl);
totedges--;