Sculpt: use distance threshold for dyntopo symmetrize

This was only used for non-dyntopo symmetrize.
There is no reason to use a hard-coded value in this case.
This commit is contained in:
Campbell Barton 2021-01-05 23:18:20 +11:00
parent 1f6846fa4e
commit acfa7b102b
1 changed files with 1 additions and 1 deletions

View File

@ -8196,7 +8196,7 @@ static int sculpt_symmetrize_exec(bContext *C, wmOperator *op)
(BMO_FLAG_DEFAULTS & ~BMO_FLAG_RESPECT_HIDE),
"symmetrize input=%avef direction=%i dist=%f use_shapekey=%b",
sd->symmetrize_direction,
0.00001f,
dist,
true);
SCULPT_dynamic_topology_triangulate(ss->bm);