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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-09-27 23:45:38 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-09-27 23:45:38 +0400
commit9dce6081c0b46e3da1f78a0fd336bafd13ec2f04 (patch)
tree232ae840163b55cf498f08f5e133212267f53508 /source/blender/src/parametrizer.c
parent0cd7ee76a43316255e12ec27f615ad9916334eee (diff)
Bugfix for a recent commit: live unwrapping behaved badly because
pinned uv charts were being auto rotated, they should just stay fixed.
Diffstat (limited to 'source/blender/src/parametrizer.c')
-rw-r--r--source/blender/src/parametrizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/parametrizer.c b/source/blender/src/parametrizer.c
index 22acc210262..c3b31613dd9 100644
--- a/source/blender/src/parametrizer.c
+++ b/source/blender/src/parametrizer.c
@@ -4137,7 +4137,7 @@ void param_lscm_solve(ParamHandle *handle)
if (chart->u.lscm.context) {
result = p_chart_lscm_solve(chart);
- if (result)
+ if (result && !(chart->flag & PCHART_NOPACK))
p_chart_rotate_minimum_area(chart);
if (!result || (chart->u.lscm.pin1))