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:
2010-12-24 10:15:57 +00:00
parent 4d0c10d5ca
commit b61adec1fd
6 changed files with 46 additions and 28 deletions

View File

@@ -59,14 +59,10 @@ class DATA_PT_context_curve(CurveButtonsPanel, bpy.types.Panel):
curve = context.curve
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 curve:
split.template_ID(space, "pin_id")
split.separator()
layout.template_ID(space, "pin_id", unlink="None") # XXX: broken
class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel):