UI: Change default Spin steps from 9 to 12

Differential Revision: https://developer.blender.org/D6615

Reviewed by: Brecht van Lommel
This commit is contained in:
William Reynish
2020-01-18 19:49:19 +01:00
parent 9801678295
commit a7ca0e92ef

View File

@@ -199,7 +199,7 @@ void MESH_OT_spin(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
/* props */
RNA_def_int(ot->srna, "steps", 9, 0, 1000000, "Steps", "Steps", 0, 1000);
RNA_def_int(ot->srna, "steps", 12, 0, 1000000, "Steps", "Steps", 0, 1000);
prop = RNA_def_boolean(ot->srna, "dupli", 0, "Use Duplicates", "");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);