From e249dfd0f6707bebde21f81d033647d18e611eea Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Sat, 30 Sep 2017 16:38:53 -0400 Subject: [PATCH] Cleanup: Remove some old pre 2.5 IPO code --- source/blender/editors/mesh/meshtools.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/source/blender/editors/mesh/meshtools.c b/source/blender/editors/mesh/meshtools.c index 3f06ba2ced4..ba57cda6916 100644 --- a/source/blender/editors/mesh/meshtools.c +++ b/source/blender/editors/mesh/meshtools.c @@ -449,15 +449,6 @@ int join_mesh_exec(bContext *C, wmOperator *op) /* adjust settings to fit (allocate a new data-array) */ kbn->data = MEM_callocN(sizeof(float) * 3 * totvert, "joined_shapekey"); kbn->totelem = totvert; - - /* XXX 2.5 Animato */ -#if 0 - /* also, copy corresponding ipo-curve to ipo-block if applicable */ - if (me->key->ipo && key->ipo) { - /* FIXME... this is a luxury item! */ - puts("FIXME: ignoring IPO's when joining shapekeys on Meshes for now..."); - } -#endif } kb_map[i] = kbn;