Bug fix, own collection.

"Add Group" was excluding linked library objects.
This commit is contained in:
Ton Roosendaal
2012-12-27 15:55:37 +00:00
parent 16411da41e
commit bfcb1d4cde

View File

@@ -313,7 +313,7 @@ static int group_create_exec(bContext *C, wmOperator *op)
group = add_group(name);
CTX_DATA_BEGIN (C, Base *, base, selected_editable_bases)
CTX_DATA_BEGIN (C, Base *, base, selected_bases)
{
add_to_group(group, base->object, scene, base);
}