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-08 00:15:54 +0400
committerTon Roosendaal <ton@blender.org>2005-05-08 00:15:54 +0400
commit4a123c082f7e4537df5586795de14bd4742fe5b4 (patch)
tree4167620f086bd046aa9d143089fbf666ea396e5c /source/blender/src/transform_manipulator.c
parent9a41ac4f70fb85490d0c4e259ba1873a4fd1c5dd (diff)
Dang, flipped a zero and one!
Error in commit of 5 hours ago... normal alignment didnt work OK for the case a face is selected.
Diffstat (limited to 'source/blender/src/transform_manipulator.c')
-rw-r--r--source/blender/src/transform_manipulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/transform_manipulator.c b/source/blender/src/transform_manipulator.c
index 7e4f324f5ae..a102302d5c5 100644
--- a/source/blender/src/transform_manipulator.c
+++ b/source/blender/src/transform_manipulator.c
@@ -194,7 +194,7 @@ int calc_manipulator_stats(ScrArea *sa)
for(efa= em->faces.first; efa; efa= efa->next) {
if(efa->f & SELECT) {
- no_faces= 1;
+ no_faces= 0;
VECADD(normal, normal, efa->n);
VecSubf(vec, efa->v2->co, efa->v1->co);
VECADD(plane, plane, vec);