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.
This commit is contained in:
2006-10-12 13:13:45 +00:00
parent b2a8417fce
commit ce0f9a3cac
4 changed files with 154 additions and 153 deletions

View File

@@ -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;