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:
authorTon Roosendaal <ton@blender.org>2005-05-30 03:40:35 +0400
committerTon Roosendaal <ton@blender.org>2005-05-30 03:40:35 +0400
commitb775055107b34df36d86f8b3bfc5039af494b99a (patch)
tree3a21724d86671471f9c2cca2da732fe644d344e1
parent1d7a8cf86fb15b4e410899f9ed594721b135a2f4 (diff)
Tinsy wee buggie; added 'extrude vertices only' to menu that appears when
only 1 face is selected.
-rw-r--r--source/blender/src/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editmesh_tools.c b/source/blender/src/editmesh_tools.c
index 63e78ac8f75..42c6473f426 100644
--- a/source/blender/src/editmesh_tools.c
+++ b/source/blender/src/editmesh_tools.c
@@ -545,7 +545,7 @@ void extrude_mesh(void)
else if(G.totfacesel==0)
nr= pupmenu("Extrude %t|Only Edges%x3|Only Vertices%x4");
else if(G.totfacesel==1)
- nr= pupmenu("Extrude %t|Region %x1|Only Edges%x3");
+ nr= pupmenu("Extrude %t|Region %x1|Only Edges%x3|Only Vertices%x4");
else
nr= pupmenu("Extrude %t|Region %x1||Individual Faces %x2|Only Edges%x3|Only Vertices%x4");
}