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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-06-12 16:57:21 +0400
committerTon Roosendaal <ton@blender.org>2005-06-12 16:57:21 +0400
commit161f8b3dbec3395b5afad5bfdc9d6eeac35ebfe2 (patch)
treed2f6437b27ac9a3d07bd5a1411d79fa42568b786 /source
parent0197fdc8b58f7d33fbac93b54c2995ef51866e6f (diff)
Bug fix #2737
Extrude 1 edge, created with Fkey for 2 vertices, didn't give the correct options... lacked a countall() to update stats.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editmesh_add.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_add.c b/source/blender/src/editmesh_add.c
index 5eacc389c24..962444a29ef 100644
--- a/source/blender/src/editmesh_add.c
+++ b/source/blender/src/editmesh_add.c
@@ -351,6 +351,7 @@ void addedgeface_mesh(void)
EM_select_edge(eed, 1);
BIF_undo_push("Add edge");
allqueue(REDRAWVIEW3D, 0);
+ countall();
makeDispList(G.obedit);
return;
}