Code Cleanup: pep8 edits

This commit is contained in:
Campbell Barton
2012-02-04 11:10:41 +00:00
parent d84573386e
commit 637bc0ddea
9 changed files with 24 additions and 18 deletions

View File

@@ -435,23 +435,23 @@ class ConstraintButtonsPanel():
self.target_template(layout, con)
split = layout.split()
col = split.column()
col.label(text="From Target:")
col.prop(con, "transform_channel", text="")
col.prop(con, "target_space", text="")
col = split.column()
col.label(text="To Action:")
col.prop(con, "action", text="")
split = layout.split()
col = split.column(align=True)
col.label(text="Target Range:")
col.prop(con, "min", text="Min")
col.prop(con, "max", text="Max")
col = split.column(align=True)
col.label(text="Action Range:")
col.prop(con, "frame_start", text="Start")