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-07-03 13:34:23 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-07-03 13:38:43 +0300
commit3129685f3845eef9488bdb611fe9f03be12c9adb (patch)
treec278bd1d764fc6776f26abfe9d200928ef154973 /release/scripts
parentc864f5d14044781cf66bf686a845435d78d0154f (diff)
Sequencer: srt export support.
This commit adds a new operator that will compile the list of text strips into an srt file. No positioning is supported yet but will be added later. The operator can be found in the effect panel in the strip properties.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 5291ff4bb3d..6c84eaf2363 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -639,6 +639,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
if not strip.use_autocenter:
row.prop(strip, "xpos")
row.prop(strip, "ypos")
+ layout.operator("sequencer.export_subtitles")
col = layout.column(align=True)
if strip.type == 'SPEED':