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:
authorMatt Ebb <matt@mke3.net>2010-03-17 03:54:34 +0300
committerMatt Ebb <matt@mke3.net>2010-03-17 03:54:34 +0300
commit3c09e763c15f3ff68a3e4d2789d9812184e45224 (patch)
tree3e13e370dd334042f8d1521e41f20a1139651d7b /release/scripts
parent724418f33afc62006c31f6ed8c175849b0400dba (diff)
Fix [#21329] Extrude of single vertex constrained
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 6311626b975..a2782bc879b 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -1369,7 +1369,7 @@ class VIEW3D_OT_edit_mesh_extrude_move(bpy.types.Operator):
totedge = mesh.total_edge_sel
totvert = mesh.total_vert_sel
- if totface >= 1 or totvert == 1:
+ if totface >= 1:
return bpy.ops.mesh.extrude_region_move('INVOKE_REGION_WIN', TRANSFORM_OT_translate={"constraint_orientation": "NORMAL", "constraint_axis": [False, False, True]})
elif totedge == 1:
return bpy.ops.mesh.extrude_region_move('INVOKE_REGION_WIN', TRANSFORM_OT_translate={"constraint_orientation": "NORMAL", "constraint_axis": [True, True, False]})