[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33974] trunk/blender/release/scripts/ui/ space_sequencer.py: == Sequencer ==

Peter Schlaile peter at schlaile.de
Fri Dec 31 23:44:18 CET 2010


Revision: 33974
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33974
Author:   schlaile
Date:     2010-12-31 23:44:17 +0100 (Fri, 31 Dec 2010)

Log Message:
-----------
== Sequencer ==

Made anim_start / anim_endofs editable again within UI.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_sequencer.py

Modified: trunk/blender/release/scripts/ui/space_sequencer.py
===================================================================
--- trunk/blender/release/scripts/ui/space_sequencer.py	2010-12-31 20:01:38 UTC (rev 33973)
+++ trunk/blender/release/scripts/ui/space_sequencer.py	2010-12-31 22:44:17 UTC (rev 33974)
@@ -608,7 +608,12 @@
             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")
 





More information about the Bf-blender-cvs mailing list