[Bf-blender-cvs] [a296dff2c86] blender-v2.83-release: Correct invalid limits in last commit

Campbell Barton noreply at git.blender.org
Wed May 20 05:50:34 CEST 2020


Commit: a296dff2c86989bd04badfb241425268bfd62a5a
Author: Campbell Barton
Date:   Wed May 20 13:48:25 2020 +1000
Branches: blender-v2.83-release
https://developer.blender.org/rBa296dff2c86989bd04badfb241425268bfd62a5a

Correct invalid limits in last commit

===================================================================

M	source/blender/editors/sculpt_paint/sculpt.c

===================================================================

diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index afd39abb6f0..d2dda1be1e7 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -7486,11 +7486,11 @@ static void SCULPT_OT_symmetrize(wmOperatorType *ot)
                 "merge_tolerance",
                 0.001f,
                 0.0f,
-                1.0f,
+                FLT_MAX,
                 "Merge Limit",
                 "Distance within which symmetrical vertices are merged",
                 0.0f,
-                FLT_MAX);
+                1.0f);
 }
 
 /**** Toggle operator for turning sculpt mode on or off ****/



More information about the Bf-blender-cvs mailing list