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>2011-07-06 16:33:33 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-07-06 16:33:33 +0400
commitcf71712bba2129680ecfe1fdf029f6526bf24a1d (patch)
tree9d248bfb525fa7ba473796357c73f7f6739b5db9
parent03b81a5c803a37f6f5306fe2b468d5d8b4891236 (diff)
Fix #27883: object actions did not get duplicated on full scene copy.
-rw-r--r--source/blender/editors/object/object_relations.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index f3b67867d7f..285b08c521b 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -1660,6 +1660,7 @@ void ED_object_single_users(Main *bmain, Scene *scene, int full)
if(full) {
single_obdata_users(bmain, scene, 0);
+ single_object_action_users(scene, 0);
single_mat_users_expand(bmain);
single_tex_users_expand(bmain);
}