From a296dff2c86989bd04badfb241425268bfd62a5a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 20 May 2020 13:48:25 +1000 Subject: Correct invalid limits in last commit --- source/blender/editors/sculpt_paint/sculpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '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 ****/ -- cgit v1.2.3