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:
authorCampbell Barton <ideasman42@gmail.com>2018-10-02 10:05:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-02 10:09:53 +0300
commitc14949e9ed1b88252453f21e4d0150597ad95ea5 (patch)
tree61e5fefa17c412487075538e476549e152094d62 /source/blender/editors/mesh/editmesh_extrude_spin.c
parent07d4580f644577ebbd49f7d9a2bd8a81561cc099 (diff)
Gizmo: move spin tool axis option into gizmo-group
Having this setting here wasn't correct (the operator ignores it).
Diffstat (limited to 'source/blender/editors/mesh/editmesh_extrude_spin.c')
-rw-r--r--source/blender/editors/mesh/editmesh_extrude_spin.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_extrude_spin.c b/source/blender/editors/mesh/editmesh_extrude_spin.c
index 3ad1e60d361..d99caaf8380 100644
--- a/source/blender/editors/mesh/editmesh_extrude_spin.c
+++ b/source/blender/editors/mesh/editmesh_extrude_spin.c
@@ -215,8 +215,6 @@ void MESH_OT_spin(wmOperatorType *ot)
WM_gizmogrouptype_append(MESH_GGT_spin);
#ifdef USE_GIZMO
WM_gizmogrouptype_append(MESH_GGT_spin_redo);
- prop = RNA_def_enum_flag(ot->srna, "gizmo_axis", rna_enum_axis_flag_xyz_items, (1 << 2), "Axis", "");
- RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);
#endif
}