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
Branches
Tags
No related merge requests found
......@@ -97,7 +97,7 @@ class Relax(bpy.types.Operator):
bl_options = {'REGISTER', 'UNDO'}
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):
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