Skip to content
Snippets Groups Projects
Commit 3d1eb9c2 authored by Mikhail Rachinskiy's avatar Mikhail Rachinskiy
Browse files

3D-Print: better property name and description for Make Manifold

parent 86890748
Branches
No related tags found
No related merge requests found
...@@ -427,18 +427,18 @@ class MESH_OT_print3d_clean_distorted(Operator): ...@@ -427,18 +427,18 @@ class MESH_OT_print3d_clean_distorted(Operator):
class MESH_OT_print3d_clean_non_manifold(Operator): class MESH_OT_print3d_clean_non_manifold(Operator):
bl_idname = "mesh.print3d_clean_non_manifold" bl_idname = "mesh.print3d_clean_non_manifold"
bl_label = "3D-Print Clean Non-Manifold and Inverted" bl_label = "3D-Print Clean Non-Manifold"
bl_description = "Cleanup problems, like holes, non-manifold vertices and inverted normals" bl_description = "Cleanup problems, like holes, non-manifold vertices and inverted normals"
bl_options = {'REGISTER', 'UNDO'} bl_options = {'REGISTER', 'UNDO'}
threshold: bpy.props.FloatProperty( threshold: FloatProperty(
name="threshold", name="Merge Distance",
description="Minimum distance between elements to merge", description="Minimum distance between elements to merge",
default=0.0001, default=0.0001,
) )
sides: bpy.props.IntProperty( sides: IntProperty(
name="sides", name="Sides",
description="Number of sides in hole required to fill", description="Number of sides in hole required to fill (zero fills all holes)",
default=0, default=0,
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment