pep8 cleanup & default select axis to negative (artist requst, make sense if you model the RHS and spend most time looping at the models front)

This commit is contained in:
Campbell Barton
2009-11-21 00:05:43 +00:00
parent d91e6e2160
commit 6073bc9bc3
18 changed files with 157 additions and 161 deletions

View File

@@ -379,7 +379,7 @@ class RENDER_PT_encoding(RenderButtonsPanel):
wide_ui = context.region.width > narrowui
split = layout.split()
col = split.column()
col.itemR(rd, "ffmpeg_format")
if rd.ffmpeg_format in ('AVI', 'QUICKTIME', 'MKV', 'OGG'):
@@ -397,7 +397,7 @@ class RENDER_PT_encoding(RenderButtonsPanel):
if wide_ui:
col = split.column()
col.itemR(rd, "ffmpeg_gopsize")
split = layout.split()
col = split.column()
@@ -408,7 +408,7 @@ class RENDER_PT_encoding(RenderButtonsPanel):
if wide_ui:
col = split.column()
col.itemR(rd, "ffmpeg_autosplit")
col.itemL(text="Mux:")
col.itemR(rd, "ffmpeg_muxrate", text="Rate")
@@ -430,6 +430,7 @@ class RENDER_PT_encoding(RenderButtonsPanel):
col.itemR(rd, "ffmpeg_multiplex_audio")
col.itemR(rd, "ffmpeg_audio_volume", slider=True)
class RENDER_PT_antialiasing(RenderButtonsPanel):
bl_label = "Anti-Aliasing"
COMPAT_ENGINES = set(['BLENDER_RENDER'])