Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-08-28 02:12:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-28 02:12:59 +0400
commit24627daabba5b52a68d431a68dd500ea632b4f51 (patch)
tree6cfd4d53feb8ce232c79bcfa0fa3aa93c71d53e0 /release/scripts/ui/space_sequencer.py
parentb76176fafffdd9b9f3e43bda994c588cd91a071d (diff)
patch [#23522] UI fixing for recent Python API changes
from Filiciss Muhgue (filiciss)
Diffstat (limited to 'release/scripts/ui/space_sequencer.py')
-rw-r--r--release/scripts/ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index ec607629757..34100da5772 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -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")