Bugfix #25365
Property buttons: the "ID template" allowed to unlink data from object, like Mesh or Curve etc, which is not supported. Button now is hidden. Thanks Dan Eicher for patch. Also: improved tooltip for 'data browse'. It was generic, now it gives specific per-type information.
This commit is contained in:
@@ -42,13 +42,10 @@ class DATA_PT_context_arm(ArmatureButtonsPanel, bpy.types.Panel):
|
||||
arm = context.armature
|
||||
space = context.space_data
|
||||
|
||||
split = layout.split(percentage=0.65)
|
||||
if ob:
|
||||
split.template_ID(ob, "data")
|
||||
split.separator()
|
||||
layout.template_ID(ob, "data", unlink="None")
|
||||
elif arm:
|
||||
split.template_ID(space, "pin_id")
|
||||
split.separator()
|
||||
layout.template_ID(space, "pin_id", unlink="None")
|
||||
|
||||
|
||||
class DATA_PT_skeleton(ArmatureButtonsPanel, bpy.types.Panel):
|
||||
|
||||
Reference in New Issue
Block a user