[Bf-extensions-cvs] [3d1eb9c2] master: 3D-Print: better property name and description for Make Manifold

Mikhail Rachinskiy noreply at git.blender.org
Wed Oct 9 17:22:57 CEST 2019


Commit: 3d1eb9c25c5969f01f66752479f9454604178fc0
Author: Mikhail Rachinskiy
Date:   Wed Oct 9 19:22:45 2019 +0400
Branches: master
https://developer.blender.org/rBA3d1eb9c25c5969f01f66752479f9454604178fc0

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

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

M	object_print3d_utils/operators.py

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

diff --git a/object_print3d_utils/operators.py b/object_print3d_utils/operators.py
index 284340c8..b142cfbb 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,
     )



More information about the Bf-extensions-cvs mailing list