Commit: f88c299bafd0f4d050288094f08325046bacdeee
Author: mattoverby
Date:   Wed Aug 19 12:21:39 2020 -0500
Branches: soc-2020-soft-body
https://developer.blender.org/rBf88c299bafd0f4d050288094f08325046bacdeee

made remesh dropdown

===================================================================

M       release/scripts/startup/bl_ui/properties_data_mesh.py
M       source/blender/makesrna/intern/rna_mesh.c

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py 
b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 2f0fdeb6a17..9673fe32a9c 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -502,7 +502,7 @@ class DATA_PT_remesh(MeshButtonsPanel, Panel):
         row = layout.row()
 
         mesh = context.mesh
-        row.prop(mesh, "remesh_mode", text="Mode", expand=True)
+        row.prop(mesh, "remesh_mode", text="Mode", expand=False)
         col = layout.column()
         if mesh.remesh_mode == 'VOXEL':
             col.prop(mesh, "remesh_voxel_size")
diff --git a/source/blender/makesrna/intern/rna_mesh.c 
b/source/blender/makesrna/intern/rna_mesh.c
index 97b7195d859..c5cceecb859 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -58,7 +58,7 @@ const EnumPropertyItem rna_enum_mesh_delimit_mode_items[] = {
 static const EnumPropertyItem rna_enum_mesh_remesh_mode_items[] = {
     {REMESH_VOXEL, "VOXEL", 0, "Voxel", "Use the voxel remesher"},
     {REMESH_QUAD, "QUAD", 0, "Quad", "Use the quad remesher"},
-    {REMESH_TET, "TET", 0, "Tet", "Use the tetrahedralize remesher"},
+    {REMESH_TET, "TET", 0, "TetGen", "Use the tetrahedralize remesher"},
     {REMESH_TETLATTICE, "TETLATTICE", 0, "Tet lattice", "Use the tet-lattice 
remesher"},
     {0, NULL, 0, NULL, NULL},
 };

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to