Fix using wrong property name for preserve face sets when remeshing

Spotted by Roel Koster in the initial face set commit.
This commit is contained in:
Pablo Dobarro 2020-03-06 14:17:30 +01:00
parent 50d5050e9c
commit 8bb0ac27dc
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ class DATA_PT_remesh(MeshButtonsPanel, Panel):
col.prop(mesh, "use_remesh_smooth_normals")
col.prop(mesh, "use_remesh_preserve_volume")
col.prop(mesh, "use_remesh_preserve_paint_mask")
col.prop(mesh, "remesh_preserve_sculpt_face_sets")
col.prop(mesh, "use_remesh_preserve_sculpt_face_sets")
col.operator("object.voxel_remesh", text="Voxel Remesh")
else:
col.operator("object.quadriflow_remesh", text="QuadriFlow Remesh")