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:
authorCampbell Barton <ideasman42@gmail.com>2007-05-07 20:34:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-05-07 20:34:57 +0400
commitf638895aad318a2d480acccc66328c94c8c638fd (patch)
tree1046d3c8f47ce120752992bde9d1c349e8b5273f
parent147cbe93c243db447ab1e5a5585a8e987c25df74 (diff)
thanks venomgfx for picking up on this one, reset didnt work - my mface/tface selection switchover mistake.
-rw-r--r--source/blender/src/editface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/editface.c b/source/blender/src/editface.c
index 2e89242c038..393f08e1fe4 100644
--- a/source/blender/src/editface.c
+++ b/source/blender/src/editface.c
@@ -418,7 +418,8 @@ void calculate_uv_map(unsigned short mapmode)
case B_UVAUTO_RESET:
tface= me->mtface;
- for(a=0; a<me->totface; a++, tface++)
+ mface= me->mface;
+ for(a=0; a<me->totface; a++, tface++, mface++)
if(mface->flag & ME_FACE_SEL)
default_uv(tface->uv, 1.0);
break;