rna renaming, still only adjusting properties that wont be animated (at least its very unlikely).

This commit is contained in:
Campbell Barton
2010-08-18 07:14:10 +00:00
parent 54e6ea70c0
commit 7da5d9faec
72 changed files with 457 additions and 472 deletions

View File

@@ -203,7 +203,7 @@ class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
# poly's set aside since they use so few settings
col = split.column()
col.label(text="Cyclic:")
col.prop(act_spline, "smooth")
col.prop(act_spline, "use_smooth")
col = split.column()
col.prop(act_spline, "cyclic_u", text="U")
@@ -252,7 +252,7 @@ class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
col.prop(act_spline, "tilt_interpolation", text="Tilt")
col.prop(act_spline, "radius_interpolation", text="Radius")
layout.prop(act_spline, "smooth")
layout.prop(act_spline, "use_smooth")
class DATA_PT_font(CurveButtonsPanel, bpy.types.Panel):