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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2006-10-12 19:27:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-10-12 19:27:32 +0400
commit15a7f590a7270e0f5b7bf59c78297865c88ea6e0 (patch)
treed7e8dd0f7ef5e6bff6230d5d2bebbf2837fa64ed /source
parent62aebec3c4741c59eb0f235aea3d34807a5fd65e (diff)
seperate objects unset the objects OB_FROMGROUP flag
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index 21966289d4b..7565c8f2ca2 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -4425,6 +4425,7 @@ void adduplicate(int mode, int dupflag)
if(object_in_group(ob, group))
add_to_group(group, obn);
}
+ obn->flag &= OB_FROMGROUP; /* this flag is unset with copy_object() */
}
if(BASACT==base) BASACT= basen;