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:
authorAntony Riakiotakis <kalast@gmail.com>2015-03-25 14:36:26 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-03-25 14:36:43 +0300
commitec03ab021f171bf529746bb440756fbc986b45e7 (patch)
tree3ca2de9cfbef1102602698e52acdbea956ecd9b1 /release/scripts/startup
parent8463e6cb416021d72282e386218118e06226101e (diff)
Change Enables proxy operator to Copy proxy operator.
Allows to change and copy settings much easier, also allows things like directory settings etc to be copied over.
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py26
1 files changed, 8 insertions, 18 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 4f83cc03b10..feaef352978 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -926,24 +926,14 @@ class SEQUENCER_PT_proxy(SequencerButtonsPanel, Panel):
flow.prop(proxy, "directory")
if proxy.use_proxy_custom_file:
flow.prop(proxy, "filepath")
-
+
layout.label("Enabled Proxies:")
- enabled = ""
- row = layout.row()
- if (proxy.build_25):
- enabled += "25% "
- if (proxy.build_50):
- enabled += "50% "
- if (proxy.build_75):
- enabled += "75% "
- if (proxy.build_100):
- enabled += "100% "
-
- row.label(enabled)
- if (proxy.use_overwrite):
- layout.label("Overwrite On")
- else:
- layout.label("Overwrite Off")
+ col = layout.column()
+ col.prop(proxy, "build_25")
+ col.prop(proxy, "build_50")
+ col.prop(proxy, "build_75")
+ col.prop(proxy, "build_100")
+ col.prop(proxy, "use_overwrite")
col = layout.column()
col.label(text="Build JPEG quality")
@@ -956,7 +946,7 @@ class SEQUENCER_PT_proxy(SequencerButtonsPanel, Panel):
col.prop(proxy, "timecode")
col = layout.column()
- col.operator("sequencer.enable_proxies")
+ col.operator("sequencer.copy_proxy_settings")
col.operator("sequencer.rebuild_proxy")