Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2020-01-18 21:49:19 +0300
committerWilliam Reynish <billrey@me.com>2020-01-18 21:49:19 +0300
commita7ca0e92ef212d51eeece259ae833c227c98e679 (patch)
tree248ce3195e973d61f3284498de67e083b294df45 /source/blender/editors/mesh
parent9801678295bb76b3c8678e7b1f8aaab61d768001 (diff)
UI: Change default Spin steps from 9 to 12
Differential Revision: https://developer.blender.org/D6615 Reviewed by: Brecht van Lommel
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_extrude_spin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_extrude_spin.c b/source/blender/editors/mesh/editmesh_extrude_spin.c
index f19a988809a..69274f77049 100644
--- a/source/blender/editors/mesh/editmesh_extrude_spin.c
+++ b/source/blender/editors/mesh/editmesh_extrude_spin.c
@@ -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);