diff --git a/source/blender/editors/sculpt_paint/sculpt_boundary.cc b/source/blender/editors/sculpt_paint/sculpt_boundary.cc index 2fb0acd1270..50c08a17dd2 100644 --- a/source/blender/editors/sculpt_paint/sculpt_boundary.cc +++ b/source/blender/editors/sculpt_paint/sculpt_boundary.cc @@ -888,7 +888,7 @@ static void bend_data_init(const Object &object, SculptBoundary &boundary) Mesh &mesh = *static_cast(object.data); const Span positions_eval = BKE_pbvh_get_vert_positions(pbvh); - const Span vert_normals = mesh.vert_normals(); + const Span vert_normals = BKE_pbvh_get_vert_normals(pbvh); bend_data_init_mesh(positions_eval, vert_normals, boundary); break;