Increase bevel segment limit in modifier from 100 to 1000.

A user asked for this increase. The performance lags when reaching
the upper limit of this number of segments, but if you need that
many segments, I guess you are willing to wait.
This commit is contained in:
Howard Trickey 2022-03-26 13:20:16 -04:00
parent ffafe494f6
commit 082b063f2a
1 changed files with 1 additions and 1 deletions

View File

@ -4081,7 +4081,7 @@ static void rna_def_modifier_bevel(BlenderRNA *brna)
prop = RNA_def_property(srna, "segments", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "res");
RNA_def_property_range(prop, 1, 100);
RNA_def_property_range(prop, 1, 1000);
RNA_def_property_ui_text(prop, "Segments", "Number of segments for round edges/verts");
RNA_def_property_update(prop, 0, "rna_BevelModifier_update_segments");