Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-05-20 06:48:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-20 06:48:25 +0300
commita296dff2c86989bd04badfb241425268bfd62a5a (patch)
treed5112618dff801e89b02da05e61cdbda62251fea /source/blender/editors/sculpt_paint/sculpt.c
parentaa02a05bc7a841b5762b34537c8cd27a25781177 (diff)
Correct invalid limits in last commit
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
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 ****/