Fix T70358: Use face count in Quadriflow by default

Reviewed By: brecht

Maniphest Tasks: T70358

Differential Revision: https://developer.blender.org/D5958
This commit is contained in:
Pablo Dobarro 2019-10-01 17:37:35 +02:00
parent 606af693fb
commit 3052229264
Notes: blender-bot 2023-02-14 02:45:41 +01:00
Referenced by issue #70358, Poor performance with QuadriFlow on high density meshes, eats RAM, and refuses to cancel when pressing Esc
1 changed files with 2 additions and 2 deletions

View File

@ -602,7 +602,7 @@ void OBJECT_OT_quadriflow_remesh(wmOperatorType *ot)
RNA_def_enum(ot->srna,
"mode",
mode_type_items,
0,
QUADRIFLOW_REMESH_FACES,
"Mode",
"How to specify the amount of detail for the new mesh");
@ -628,7 +628,7 @@ void OBJECT_OT_quadriflow_remesh(wmOperatorType *ot)
prop = RNA_def_int(ot->srna,
"target_faces",
1,
4000,
1,
INT_MAX,
"Number of Faces",