patch [#23522] UI fixing for recent Python API changes

from Filiciss Muhgue (filiciss)
This commit is contained in:
2010-08-27 22:12:59 +00:00
parent b76176faff
commit 24627daabb
3 changed files with 3 additions and 3 deletions

View File

@@ -743,7 +743,7 @@ class SEQUENCER_PT_proxy(SequencerButtonsPanel, bpy.types.Panel):
flow.prop(strip, "use_proxy_custom_directory")
flow.prop(strip, "use_proxy_custom_file")
if strip.proxy: # TODO - need to add this somehow
if strip.proxy_custom_directory and not strip.use_proxy_custom_file:
if strip.use_proxy_custom_directory and not strip.use_proxy_custom_file:
flow.prop(strip.proxy, "directory")
if strip.use_proxy_custom_file:
flow.prop(strip.proxy, "filepath")