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>2006-10-12 17:13:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-10-12 17:13:45 +0400
commitce0f9a3cac64600c437e6983fdd0d37d22a48fcc (patch)
tree5f95d861983989985c31034ecf8b2f4b2a37b5ce /source/blender/python/api2_2x/Group.c
parentb2a8417fce8d231188ee75062804be4d471c57be (diff)
On Matt's suggestion moved "Make Link->Groups" to the add groups menu as "Add to Active Objects Groups"
removed "Make Link -> DupliGroup" because Copy->Duplis does the same thing. Python's Group.c had an unneeded scene/base lookup.
Diffstat (limited to 'source/blender/python/api2_2x/Group.c')
-rwxr-xr-xsource/blender/python/api2_2x/Group.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/Group.c b/source/blender/python/api2_2x/Group.c
index 7c5e230f9ce..328b438a6f4 100755
--- a/source/blender/python/api2_2x/Group.c
+++ b/source/blender/python/api2_2x/Group.c
@@ -741,8 +741,6 @@ static PyObject *GroupObSeq_add( BPy_GroupObSeq * self, PyObject *args )
blen_ob = ( ( BPy_Object * ) pyobj )->object;
- base= object_in_scene(blen_ob, G.scene);
-
add_to_group_wraper(self->bpygroup->group, blen_ob); /* this checks so as not to add the object into the group twice*/
Py_RETURN_NONE;