forked from bartvdbraak/blender
Fixed "bug" #28611: Subdiv value for icosphere should not be below 1.
This commit is contained in:
parent
5d695ed84a
commit
d9894af950
@ -1721,7 +1721,7 @@ void MESH_OT_primitive_ico_sphere_add(wmOperatorType *ot)
|
||||
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
|
||||
|
||||
/* props */
|
||||
RNA_def_int(ot->srna, "subdivisions", 2, 0, INT_MAX, "Subdivisions", "", 0, 8);
|
||||
RNA_def_int(ot->srna, "subdivisions", 2, 1, INT_MAX, "Subdivisions", "", 1, 8);
|
||||
RNA_def_float(ot->srna, "size", 1.0f, 0.0f, FLT_MAX, "Size", "", 0.001f, 100.00);
|
||||
|
||||
ED_object_add_generic_props(ot, TRUE);
|
||||
|
Loading…
Reference in New Issue
Block a user