Fix T60607: Spin tool duplicates after Spin Duplicate

This commit is contained in:
Campbell Barton
2019-11-01 11:22:04 +11:00
parent 61bf51acb5
commit c1f8268734

View File

@@ -200,7 +200,10 @@ void MESH_OT_spin(wmOperatorType *ot)
/* props */
RNA_def_int(ot->srna, "steps", 9, 0, 1000000, "Steps", "Steps", 0, 1000);
RNA_def_boolean(ot->srna, "dupli", 0, "Duplicate", "Make Duplicates");
prop = RNA_def_boolean(ot->srna, "dupli", 0, "Use Duplicates", "");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
prop = RNA_def_float(ot->srna,
"angle",
DEG2RADF(90.0f),