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:
authorPeter Schlaile <peter@schlaile.de>2011-01-01 01:44:17 +0300
committerPeter Schlaile <peter@schlaile.de>2011-01-01 01:44:17 +0300
commit2840e7b7645130f79cb92c5b899228c5ab826bd5 (patch)
tree00901c4ac6020b572855b1b87fae1b23b008df4f /release/scripts/ui/space_sequencer.py
parentc169ccc711edc182d4983f59c1124aee91e7acd5 (diff)
== Sequencer ==
Made anim_start / anim_endofs editable again within UI.
Diffstat (limited to 'release/scripts/ui/space_sequencer.py')
-rw-r--r--release/scripts/ui/space_sequencer.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index 3f757e1973c..b8a5c2c68c2 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -608,7 +608,12 @@ class SEQUENCER_PT_input(SequencerButtonsPanel, bpy.types.Panel):
col.prop(strip.crop, "max_x")
col = layout.column(align=True)
- col.label(text="Trim Duration:")
+ col.label(text="Trim Duration (hard):")
+ col.prop(strip, "animation_offset_start", text="Start")
+ col.prop(strip, "animation_offset_end", text="End")
+
+ col = layout.column(align=True)
+ col.label(text="Trim Duration (soft):")
col.prop(strip, "frame_offset_start", text="Start")
col.prop(strip, "frame_offset_end", text="End")