[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4588] contrib/py/scripts/addons/ sequencer_tools/export_strips.py: Export strip: fix stupid typo bug, breaking the end frame value computation!

Bastien Montagne montagne29 at wanadoo.fr
Sat Jun 22 16:38:00 CEST 2013


Revision: 4588
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4588
Author:   mont29
Date:     2013-06-22 14:37:59 +0000 (Sat, 22 Jun 2013)
Log Message:
-----------
Export strip: fix stupid typo bug, breaking the end frame value computation!

Modified Paths:
--------------
    contrib/py/scripts/addons/sequencer_tools/export_strips.py

Modified: contrib/py/scripts/addons/sequencer_tools/export_strips.py
===================================================================
--- contrib/py/scripts/addons/sequencer_tools/export_strips.py	2013-06-19 15:39:32 UTC (rev 4587)
+++ contrib/py/scripts/addons/sequencer_tools/export_strips.py	2013-06-22 14:37:59 UTC (rev 4588)
@@ -23,6 +23,7 @@
     """Export (render) selected strips in sequencer"""
     bl_idname = "sequencer.export_strips"
     bl_label = "Export Strips"
+
     filepath = StringProperty(subtype='FILE_PATH')
 
     def execute(self, context):
@@ -45,7 +46,7 @@
                 continue
             if start is None or strip.frame_final_start < start:
                 start = strip.frame_final_start
-            if end is None or strip.frame_final_end < end:
+            if end is None or strip.frame_final_end > end:
                 end = strip.frame_final_end
         sce.frame_start = start
         sce.frame_end = end



More information about the Bf-extensions-cvs mailing list