From 5329139443bf48c28204bcb9fe1bd1e2ccd6597c Mon Sep 17 00:00:00 2001
From: Daniel Salazar <zanqdo@gmail.com>
Date: Fri, 30 Apr 2010 02:01:45 +0000
Subject: [PATCH] Mesh Relax addon new hard max iteration to 100

---
 mesh_relax.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mesh_relax.py b/mesh_relax.py
index 9211659ae..89009e16d 100644
--- a/mesh_relax.py
+++ b/mesh_relax.py
@@ -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
-- 
GitLab