replace format checks with is_movie_format

This commit is contained in:
Campbell Barton 2013-03-18 16:17:45 +00:00
parent 8ec1f3eae1
commit 7bfef29f2f

@ -476,8 +476,7 @@ class RENDER_PT_output(RenderButtonsPanel, Panel):
split = layout.split()
col = split.column()
col.active = file_format not in ('AVI_JPEG', 'AVI_RAW', 'FRAMESERVER', 'H264', 'FFMPEG',
'THEORA', 'QUICKTIME_QTKIT', 'QUICKTIME_CARBON', 'XVID')
col.active = not rd.is_movie_format
col.prop(rd, "use_overwrite")
col.prop(rd, "use_placeholder")