[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31442] trunk/blender/release/scripts/ui/ space_time.py: missed renaming this

Campbell Barton ideasman42 at gmail.com
Wed Aug 18 15:02:59 CEST 2010


Revision: 31442
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31442
Author:   campbellbarton
Date:     2010-08-18 15:02:59 +0200 (Wed, 18 Aug 2010)

Log Message:
-----------
missed renaming this

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

Modified: trunk/blender/release/scripts/ui/space_time.py
===================================================================
--- trunk/blender/release/scripts/ui/space_time.py	2010-08-18 10:42:00 UTC (rev 31441)
+++ trunk/blender/release/scripts/ui/space_time.py	2010-08-18 13:02:59 UTC (rev 31442)
@@ -56,7 +56,7 @@
         row = layout.row(align=True)
         row.operator("screen.frame_jump", text="", icon='REW').end = False
         row.operator("screen.keyframe_jump", text="", icon='PREV_KEYFRAME').next = False
-        if not screen.animation_playing:
+        if not screen.is_animation_playing:
             row.operator("screen.animation_play", text="", icon='PLAY_REVERSE').reverse = True
             row.operator("screen.animation_play", text="", icon='PLAY')
         else:
@@ -68,7 +68,7 @@
 
         row = layout.row(align=True)
         row.prop(tools, "use_keyframe_insert_auto", text="", toggle=True)
-        if screen.animation_playing and tools.use_keyframe_insert_auto:
+        if screen.is_animation_playing and tools.use_keyframe_insert_auto:
             subsub = row.row()
             subsub.prop(tools, "use_record_with_nla", toggle=True)
 





More information about the Bf-blender-cvs mailing list