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 <campbell@blender.org>2022-05-12 13:10:23 +0300
committerCampbell Barton <campbell@blender.org>2022-05-12 13:12:36 +0300
commit6f5d172d6cb1f91106cb2d918c4605da69269a40 (patch)
tree7c8f00db2e6a8b065f2f06171c6155adc73f0f1d
parentc21cc4dad5c83354d96ba3a97385756c737289b9 (diff)
Fix error tagging vertices as loose in the screw modifier
Regression in 90a23dec4650d63a836cb9e9969aab4d0da4ba2f.
-rw-r--r--source/blender/modifiers/intern/MOD_screw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_screw.c b/source/blender/modifiers/intern/MOD_screw.c
index 2082d9f3bba..08925e8aeb1 100644
--- a/source/blender/modifiers/intern/MOD_screw.c
+++ b/source/blender/modifiers/intern/MOD_screw.c
@@ -439,7 +439,7 @@ static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *
/* Tag mvert as not loose. */
BLI_BITMAP_ENABLE(vert_tag, med_orig->v1);
- BLI_BITMAP_ENABLE(vert_tag, med_orig->v1);
+ BLI_BITMAP_ENABLE(vert_tag, med_orig->v2);
}
/* build polygon -> edge map */