From 3d1eb9c25c5969f01f66752479f9454604178fc0 Mon Sep 17 00:00:00 2001 From: Mikhail Rachinskiy <mikhail.rachinskiy@gmail.com> Date: Wed, 9 Oct 2019 19:22:45 +0400 Subject: [PATCH] 3D-Print: better property name and description for Make Manifold --- object_print3d_utils/operators.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/object_print3d_utils/operators.py b/object_print3d_utils/operators.py index 284340c8e..b142cfbb4 100644 --- a/object_print3d_utils/operators.py +++ b/object_print3d_utils/operators.py @@ -427,18 +427,18 @@ class MESH_OT_print3d_clean_distorted(Operator): class MESH_OT_print3d_clean_non_manifold(Operator): 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_options = {'REGISTER', 'UNDO'} - threshold: bpy.props.FloatProperty( - name="threshold", + threshold: FloatProperty( + name="Merge Distance", description="Minimum distance between elements to merge", default=0.0001, ) - sides: bpy.props.IntProperty( - name="sides", - description="Number of sides in hole required to fill", + sides: IntProperty( + name="Sides", + description="Number of sides in hole required to fill (zero fills all holes)", default=0, ) -- GitLab