Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Dobarro <pablodp606@gmail.com>2020-03-06 16:17:30 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-03-06 16:17:30 +0300
commit8bb0ac27dc1483b0d919ad68f2f7aaa21f5fa6f8 (patch)
tree793dc0be20b9941e0c0a9499dbe0585d4d9b68ff /release/scripts/startup/bl_ui/properties_data_mesh.py
parent50d5050e9c4561d6528a2ac18ad3fbbaa9df6576 (diff)
Fix using wrong property name for preserve face sets when remeshing
Spotted by Roel Koster in the initial face set commit.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_mesh.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 347c41b23fb..d91b2ceb7f7 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -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")