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:
authorCampbell Barton <ideasman42@gmail.com>2010-11-09 12:34:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-09 12:34:03 +0300
commit989aea3ed003092af0ded3177441bf05f33aaf24 (patch)
tree655e44a330fef895c7d5e3afc3445d8cd7666f8b
parent1b513838a81c19d3b94103b87d0e0182d6028121 (diff)
copying a camera would copy its animation data (and action datablocks) twice.
-rw-r--r--source/blender/blenkernel/intern/object.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c
index 9512aa3a1ce..9c76db2b2b5 100644
--- a/source/blender/blenkernel/intern/object.c
+++ b/source/blender/blenkernel/intern/object.c
@@ -715,7 +715,6 @@ Camera *copy_camera(Camera *cam)
Camera *camn;
camn= copy_libblock(cam);
- camn->adt= BKE_copy_animdata(cam->adt);
return camn;
}