From 1524b1f11db98faf92441360a9a22a9d6a20babe Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 8 Jan 2013 12:10:53 +0000 Subject: [PATCH] fix own error in recent update to follow active quads [#33783] Unwrap with Follow Active Quad fails --- release/scripts/startup/bl_operators/uvcalc_follow_active.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/release/scripts/startup/bl_operators/uvcalc_follow_active.py b/release/scripts/startup/bl_operators/uvcalc_follow_active.py index d870ef963ea..7b6013f3044 100644 --- a/release/scripts/startup/bl_operators/uvcalc_follow_active.py +++ b/release/scripts/startup/bl_operators/uvcalc_follow_active.py @@ -49,8 +49,13 @@ def extend(obj, operator, EXTEND_MODE): # our own local walker def walk_face_init(faces, f_act): + # first tag all faces True (so we dont uvmap them) + for f in bm.faces: + f.tag = True + # then tag faces arg False for f in faces: f.tag = False + # tag the active face True since we begin there f_act.tag = True def walk_face(f):