fix (actually nasty workaround), for groups incorrectly drawing in the object panel when the blend file has naming collisions with library data.

also minor style cleanup in bpy_rna.c
This commit is contained in:
Campbell Barton
2012-07-03 10:32:10 +00:00
parent 2f5735a9d4
commit 314a275850
2 changed files with 16 additions and 11 deletions

View File

@@ -159,7 +159,7 @@ class OBJECT_PT_groups(ObjectButtonsPanel, Panel):
def draw(self, context):
layout = self.layout
ob = context.object
obj = context.object
row = layout.row(align=True)
row.operator("object.group_link", text="Add to Group")
@@ -167,8 +167,13 @@ class OBJECT_PT_groups(ObjectButtonsPanel, Panel):
# XXX, this is bad practice, yes, I wrote it :( - campbell
index = 0
obj_name = obj.name
for group in bpy.data.groups:
if ob.name in group.objects:
# XXX this is slow and stupid!, we need 2 checks, one thats fast
# and another that we can be sure its not a name collission
# from linked library data
group_objects = group.objects
if obj_name in group.objects and obj in group_objects[:]:
col = layout.column(align=True)
col.context_pointer_set("group", group)