Commit: c8627b9067c5b72c35f8799588a87474e91cc464
Author: Campbell Barton
Date:   Mon Aug 28 13:01:11 2017 +1000
Branches: blender2.8
https://developer.blender.org/rBc8627b9067c5b72c35f8799588a87474e91cc464

EditMesh: set edge-rin subdiv minimum to 1

This only made sense for bridge tool.

D2785 by @mbjorkegren

===================================================================

M       source/blender/editors/mesh/editmesh_tools.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_tools.c 
b/source/blender/editors/mesh/editmesh_tools.c
index 62d087257ea..baeab6d2071 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -172,7 +172,7 @@ struct EdgeRingOpSubdProps {
 };
 
 
-static void mesh_operator_edgering_props(wmOperatorType *ot, const int 
cuts_default)
+static void mesh_operator_edgering_props(wmOperatorType *ot, const int 
cuts_min, const int cuts_default)
 {
        /* Note, these values must match delete_mesh() event values */
        static EnumPropertyItem prop_subd_edgering_types[] = {
@@ -184,7 +184,7 @@ static void mesh_operator_edgering_props(wmOperatorType 
*ot, const int cuts_defa
 
        PropertyRNA *prop;
 
-       prop = RNA_def_int(ot->srna, "number_cuts", cuts_default, 0, 1000, 
"Number of Cuts", "", 0, 64);
+       prop = RNA_def_int(ot->srna, "number_cuts", cuts_default, 0, 1000, 
"Number of Cuts", "", cuts_min, 64);
        RNA_def_property_flag(prop, PROP_SKIP_SAVE);
 
        RNA_def_enum(ot->srna, "interpolation", prop_subd_edgering_types, 
SUBD_RING_INTERP_PATH,
@@ -251,7 +251,7 @@ void MESH_OT_subdivide_edgering(wmOperatorType *ot)
        ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
        /* properties */
-       mesh_operator_edgering_props(ot, 10);
+       mesh_operator_edgering_props(ot, 1, 10);
 }
 
 
@@ -5451,7 +5451,7 @@ void MESH_OT_bridge_edge_loops(wmOperatorType *ot)
        RNA_def_float(ot->srna, "merge_factor", 0.5f, 0.0f, 1.0f, "Merge 
Factor", "", 0.0f, 1.0f);
        RNA_def_int(ot->srna, "twist_offset", 0, -1000, 1000, "Twist", "Twist 
offset for closed loops", -1000, 1000);
 
-       mesh_operator_edgering_props(ot, 0);
+       mesh_operator_edgering_props(ot, 0, 0);
 }
 
 static int edbm_wireframe_exec(bContext *C, wmOperator *op)

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to