UI: Fix typo "subdivion" -> subdivision

In the Multires panel, use singular Subdivision instead of Subdivisions.
This commit is contained in:
2020-08-12 17:21:34 +02:00
parent 841d779322
commit 1813a99447
4 changed files with 4 additions and 4 deletions

View File

@@ -1746,7 +1746,7 @@ static void subdiv_foreach_vertices_of_loose_edges_task(void *__restrict userdat
const int num_subdiv_vertices_per_coarse_edge = resolution - 2;
const Mesh *coarse_mesh = ctx->coarse_mesh;
const MEdge *coarse_edge = &coarse_mesh->medge[coarse_edge_index];
/* Subdivion vertices which corresponds to edge's v1 and v2. */
/* Subdivision vertices which corresponds to edge's v1 and v2. */
const int subdiv_v1_index = ctx->vertices_corner_offset + coarse_edge->v1;
const int subdiv_v2_index = ctx->vertices_corner_offset + coarse_edge->v2;
/* First subdivided inner vertex of the edge. */