apply rna rename most of the show_*, names.

This commit is contained in:
Campbell Barton
2010-08-17 17:03:52 +00:00
parent c61127d502
commit 3bd039eff9
48 changed files with 200 additions and 200 deletions

View File

@@ -176,23 +176,23 @@ class OBJECT_PT_display(ObjectButtonsPanel, bpy.types.Panel):
col = split.column()
row = col.row()
row.prop(ob, "draw_bounds", text="Bounds")
row.prop(ob, "show_bounds", text="Bounds")
sub = row.row()
sub.active = ob.draw_bounds
sub.active = ob.show_bounds
sub.prop(ob, "draw_bounds_type", text="")
split = layout.split()
col = split.column()
col.prop(ob, "draw_name", text="Name")
col.prop(ob, "draw_axis", text="Axis")
col.prop(ob, "draw_wire", text="Wire")
col.prop(ob, "show_name", text="Name")
col.prop(ob, "show_axis", text="Axis")
col.prop(ob, "show_wire", text="Wire")
col.prop(ob, "color", text="Object Color")
col = split.column()
col.prop(ob, "draw_texture_space", text="Texture Space")
col.prop(ob, "x_ray", text="X-Ray")
col.prop(ob, "draw_transparent", text="Transparency")
col.prop(ob, "show_texture_space", text="Texture Space")
col.prop(ob, "show_x_ray", text="X-Ray")
col.prop(ob, "show_transparent", text="Transparency")
class OBJECT_PT_duplication(ObjectButtonsPanel, bpy.types.Panel):