From f638895aad318a2d480acccc66328c94c8c638fd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 7 May 2007 16:34:57 +0000 Subject: thanks venomgfx for picking up on this one, reset didnt work - my mface/tface selection switchover mistake. --- source/blender/src/editface.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source') 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; atotface; a++, tface++) + mface= me->mface; + for(a=0; atotface; a++, tface++, mface++) if(mface->flag & ME_FACE_SEL) default_uv(tface->uv, 1.0); break; -- cgit v1.2.3