From bfcb1d4cde934fb30102bba2ed789d57a1c2d81d Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 27 Dec 2012 15:55:37 +0000 Subject: Bug fix, own collection. "Add Group" was excluding linked library objects. --- source/blender/editors/object/object_group.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/object/object_group.c') diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c index a3bf27a19d6..7bf1a5db3b1 100644 --- a/source/blender/editors/object/object_group.c +++ b/source/blender/editors/object/object_group.c @@ -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); } -- cgit v1.2.3