[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [34122] trunk/blender/release/scripts/ui/ space_sequencer.py: Missed this file for markers commit...

Joshua Leung aligorith at gmail.com
Thu Jan 6 06:04:44 CET 2011


Revision: 34122
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=34122
Author:   aligorith
Date:     2011-01-06 06:04:44 +0100 (Thu, 06 Jan 2011)

Log Message:
-----------
Missed this file for markers commit... it already had a markers menu
defined, but it was outdated

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	2011-01-06 05:04:07 UTC (rev 34121)
+++ trunk/blender/release/scripts/ui/space_sequencer.py	2011-01-06 05:04:44 UTC (rev 34122)
@@ -182,13 +182,17 @@
     def draw(self, context):
         layout = self.layout
 
+        #layout.operator_context = 'EXEC_REGION_WIN'
+        
         layout.column()
-        layout.operator("marker.add", text="Add Marker")
+        layout.operator("marker.add", "Add Marker")
         layout.operator("marker.duplicate", text="Duplicate Marker")
-        layout.operator("marker.move", text="Grab/Move Marker")
         layout.operator("marker.delete", text="Delete Marker")
+
         layout.separator()
-        layout.label(text="ToDo: Name Marker")
+        
+        layout.operator("marker.rename", text="Rename Marker")
+        layout.operator("marker.move", text="Grab/Move Marker")
 
         #layout.operator("sequencer.sound_strip_add", text="Transform Markers") # toggle, will be rna - (sseq->flag & SEQ_MARKER_TRANS)
 





More information about the Bf-blender-cvs mailing list