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-12-22 10:45:01 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-12-22 10:45:01 +0300
commitd892aac06bfca5841897bf26c1885d0131d76d5c (patch)
treea8098b3f80e4ede401bb80c1f4ecea7b7730bac8 /source/blender/blenkernel/intern/customdata.c
parent73382364a39fb76ac7ad4801f9a4d41d979aa733 (diff)
Fix: active face was lost switching between faceselect mode and editmode.
Diffstat (limited to 'source/blender/blenkernel/intern/customdata.c')
-rw-r--r--source/blender/blenkernel/intern/customdata.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index 2567595171c..dffcc8a2201 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -211,10 +211,8 @@ static void layerCopy_tface(const void *source, void *dest, int count)
MTFace *dest_tf = (MTFace*)dest;
int i;
- for(i = 0; i < count; ++i) {
+ for(i = 0; i < count; ++i)
dest_tf[i] = source_tf[i];
- dest_tf[i].flag &= ~TF_ACTIVE;
- }
}
static void layerInterp_tface(void **sources, float *weights,