Fix missing removal of proxy references in py scripts.

Reported by studio (Hjalti), thanks.
This commit is contained in:
2022-02-07 16:22:38 +01:00
parent a5dd1bc53d
commit a7b5982030
2 changed files with 1 additions and 2 deletions

View File

@@ -149,7 +149,7 @@ class DATA_PT_bone_groups(ArmatureButtonsPanel, Panel):
col.operator("pose.group_move", icon='TRIA_DOWN', text="").direction = 'DOWN'
split = layout.split()
split.active = (ob.proxy is None)
split.active = True
col = split.column()
col.prop(group, "color_set")