Correct invalid limits in last commit

This commit is contained in:
Campbell Barton 2020-05-20 13:48:25 +10:00
parent aa02a05bc7
commit a296dff2c8
1 changed files with 2 additions and 2 deletions

View File

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