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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-10-09 18:22:45 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-10-09 18:22:45 +0300
commit3d1eb9c25c5969f01f66752479f9454604178fc0 (patch)
tree1affae4bf36dadad3eeaf76f4a8bf8d7dc8d51c4
parent86890748a0cd1de3309955526231a3810030ae44 (diff)
3D-Print: better property name and description for Make Manifold
-rw-r--r--object_print3d_utils/operators.py12
1 files changed, 6 insertions, 6 deletions
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,
)