Mesh Relax addon new hard max iteration to 100

This commit is contained in:
Daniel Salazar
2010-04-30 02:01:45 +00:00
parent dc0ec6d9f9
commit 5329139443

View File

@ -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