Fix T61979: Solidify not working in Blender 2.8.

Broken logic in rB181356edba04, thanks most likely to stupid naming
(face in Blender is for tessellated faces, use poly for BMesh polygons).

Cleanup to follow in next commit...
This commit is contained in:
Bastien Montagne 2019-02-26 20:45:56 +01:00
parent 788778d985
commit cae56ad6a2
Notes: blender-bot 2023-02-14 03:34:15 +01:00
Referenced by issue #61979, Solidify not working in Blender 2.8
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ static void mesh_calc_hq_normal(Mesh *mesh, float (*face_nors)[3], float (*r_ver
numVerts = mesh->totvert;
numEdges = mesh->totedge;
numFaces = mesh->totface;
numFaces = mesh->totpoly;
mpoly = mesh->mpoly;
medge = mesh->medge;
mvert = mesh->mvert;