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>2004-12-28 08:38:56 +0300
committerMatt Ebb <matt@mke3.net>2004-12-28 08:38:56 +0300
commit52799e4950534c4e5885afa7f7e4e14017079906 (patch)
tree65d22dabe29cfe1cc2caf81d5eee29cfeec5377d /source/blender/src/editmesh_loop.c
parent0db670ce475e636d71f88747d412453fd032d54c (diff)
Simple one - update the selected vertex count after doing a vertex
loop select (Alt B) Reported by Gimble
Diffstat (limited to 'source/blender/src/editmesh_loop.c')
-rw-r--r--source/blender/src/editmesh_loop.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_loop.c b/source/blender/src/editmesh_loop.c
index 2976b2c3cfb..e5961981ff6 100644
--- a/source/blender/src/editmesh_loop.c
+++ b/source/blender/src/editmesh_loop.c
@@ -365,6 +365,9 @@ void vertex_loop_select()
}
EM_select_flush(); // flushes vertex -> edge -> face selection
+
+ countall();
+
BIF_undo_push("Select Vertex Loop");
}