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:
authorTon Roosendaal <ton@blender.org>2011-02-16 21:04:03 +0300
committerTon Roosendaal <ton@blender.org>2011-02-16 21:04:03 +0300
commit9d168f733719c3abeba245a92cb37530db2a98f4 (patch)
tree80c84aba556fa6b9ad030acdfd992e30a2215c16 /source/blender/editors/transform
parentaed7eaf0d9171c4bfa7814e141afad773cb31441 (diff)
Bugfix #26096
Switching layers reveiled hidden objects in wrong positions, changes are currently not being handled for hidden objects. Only way to fix it is by completely update newly visible objects... (Also fixed a typo and a compile warning)
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_conversions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index de80c0a0423..dbed27e95a1 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -1941,6 +1941,7 @@ static void VertsToTransData(TransInfo *t, TransData *td, EditMesh *em, EditVert
}
}
+#if 0
static void createTransBMeshVerts(TransInfo *t, BME_Mesh *bm, BME_TransData_Head *td) {
BME_Vert *v;
BME_TransData *vtd;
@@ -1965,6 +1966,7 @@ static void createTransBMeshVerts(TransInfo *t, BME_Mesh *bm, BME_TransData_Head
* (i.e. we can't depend on td->len to determine the number of actual elements) */
t->total = i;
}
+#endif
static void createTransEditVerts(bContext *C, TransInfo *t)
{