Skip to content
Snippets Groups Projects
Commit 53291394 authored by Daniel Salazar's avatar Daniel Salazar
Browse files

Mesh Relax addon new hard max iteration to 100

parent dc0ec6d9
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ class Relax(bpy.types.Operator): ...@@ -97,7 +97,7 @@ class Relax(bpy.types.Operator):
bl_options = {'REGISTER', 'UNDO'} bl_options = {'REGISTER', 'UNDO'}
iterations = IntProperty(name="Relax iterations", iterations = IntProperty(name="Relax iterations",
default=1, min=0, max=10, soft_min=0, soft_max=10) default=1, min=0, max=100, soft_min=0, soft_max=10)
def poll(self, context): def poll(self, context):
obj = context.active_object obj = context.active_object
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment