[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47720] trunk/blender/release/scripts/ startup/bl_ui/space_clip.py: Bugfix [#31766] Mouseover Label reads ' Alt Left Arrow' when over the right

Joshua Leung aligorith at gmail.com
Mon Jun 11 06:35:07 CEST 2012


Revision: 47720
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47720
Author:   aligorith
Date:     2012-06-11 04:34:59 +0000 (Mon, 11 Jun 2012)
Log Message:
-----------
Bugfix [#31766] Mouseover Label reads 'Alt Left Arrow' when over the right
arrow.

Patch by Philipp Oeser

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_clip.py

Modified: trunk/blender/release/scripts/startup/bl_ui/space_clip.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_clip.py	2012-06-11 04:13:39 UTC (rev 47719)
+++ trunk/blender/release/scripts/startup/bl_ui/space_clip.py	2012-06-11 04:34:59 UTC (rev 47720)
@@ -261,6 +261,7 @@
 
         props = row.operator("clip.track_markers", text="", icon='FRAME_PREV')
         props.backwards = True
+        props.sequence = False
         props = row.operator("clip.track_markers", text="",
                              icon='PLAY_REVERSE')
         props.backwards = True
@@ -268,7 +269,9 @@
         props = row.operator("clip.track_markers", text="", icon='PLAY')
         props.backwards = False
         props.sequence = True
-        row.operator("clip.track_markers", text="", icon='FRAME_NEXT')
+        props = row.operator("clip.track_markers", text="", icon='FRAME_NEXT')
+        props.backwards = False
+        props.sequence = False
 
         col = layout.column(align=True)
         props = col.operator("clip.clear_track_path", text="Clear After")




More information about the Bf-blender-cvs mailing list