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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-05-01 03:06:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-05-01 03:06:07 +0400
commit3648d5e06c35648665f0c4c9535ea69a22d2d86f (patch)
treead9d6fcfbbf7c40a21c89901cfff910dec79f7f1 /source
parentc40997656e5808ff20d6befb184fd78fb630170c (diff)
own mistake, typo in checking mface's selection
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/unwrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/unwrapper.c b/source/blender/src/unwrapper.c
index bb4c58acd03..d92508f7729 100644
--- a/source/blender/src/unwrapper.c
+++ b/source/blender/src/unwrapper.c
@@ -213,7 +213,7 @@ ParamHandle *construct_param_handle(Mesh *me, short implicit, short fill, short
if (mf->flag & ME_HIDE)
continue;
- if (sel && !(me->flag & ME_FACE_SEL))
+ if (sel && !(mf->flag & ME_FACE_SEL))
continue;
if (implicit && !(tf->flag & (TF_SEL1|TF_SEL2|TF_SEL3|TF_SEL4)))