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-06-01 22:36:58 +0400
committerTon Roosendaal <ton@blender.org>2005-06-01 22:36:58 +0400
commit25a4b8fa07c813c13e86882c0eaf7a5fae501c98 (patch)
tree14b8537fbb961273c08d31ee293684eb7f6fb11c /source/blender
parent51640e61b6a226a647588658865be1ab722f70bf (diff)
Bug #2661
Drawing face stats in editmesh didn't work... a typo caused using the 2nd point of a face as third one.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/drawobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c
index 6ed33a42ef0..cb5f6d99384 100644
--- a/source/blender/src/drawobject.c
+++ b/source/blender/src/drawobject.c
@@ -1513,7 +1513,7 @@ static void draw_em_measure_stats(Object *ob, EditMesh *em)
if((efa->f & SELECT) || (G.moving && faceselectedOR(efa, SELECT)) ) {
VECCOPY(v1, efa->v1->co);
VECCOPY(v2, efa->v2->co);
- VECCOPY(v3, efa->v2->co);
+ VECCOPY(v3, efa->v3->co);
if (efa->v4) {
VECCOPY(v4, efa->v4->co);
}