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-05-13 18:53:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-13 22:15:56 +0300
commitdc4f94783d4b634791a92fb44b0d163a508c48cc (patch)
tree3a41818cc1272a245561ada88beecff79159e481 /release
parente0a4624acd498313cd418ac237ebab0e3edab6d1 (diff)
EditMesh: show XYZ axis for extrude
Always show normal axis since this is the most used, even when another orientation is selected.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 6250feb77eb..46cd3fecc8f 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -397,12 +397,6 @@ class _defs_edit_mesh:
@ToolDef.from_fn
def extrude():
- def draw_settings(context, layout):
- wm = context.window_manager
- props = wm.operator_properties_last("mesh.extrude_context_move")
- props_xform = props.TRANSFORM_OT_translate
- layout.prop(props_xform, "constraint_orientation")
-
return dict(
text="Extrude Region",
icon="ops.mesh.extrude_region_move",
@@ -411,7 +405,6 @@ class _defs_edit_mesh:
("mesh.extrude_context_move", dict(TRANSFORM_OT_translate=dict(release_confirm=True)),
dict(type='ACTIONMOUSE', value='PRESS')),
),
- draw_settings=draw_settings,
)
@ToolDef.from_fn