[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33926] trunk/blender/release/scripts/ui/ space_time.py: TimeLine UI:

Joshua Leung aligorith at gmail.com
Tue Dec 28 12:52:35 CET 2010


Revision: 33926
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33926
Author:   aligorith
Date:     2010-12-28 12:52:35 +0100 (Tue, 28 Dec 2010)

Log Message:
-----------
TimeLine UI:

Reshuffling order of "sync" and "Auto-Keying" buttons so that they are
grouped more appropriately. Hopefully this isn't too much of a muscle-
memory breaker...

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-12-28 11:50:10 UTC (rev 33925)
+++ trunk/blender/release/scripts/ui/space_time.py	2010-12-28 11:52:35 UTC (rev 33926)
@@ -73,17 +73,17 @@
             sub.operator("screen.animation_play", text="", icon='PAUSE')
         row.operator("screen.keyframe_jump", text="", icon='NEXT_KEYFRAME').next = True
         row.operator("screen.frame_jump", text="", icon='FF').end = True
+		
+        layout.prop(scene, "sync_mode", text="")
 
+        layout.separator()
+		
         row = layout.row(align=True)
         row.prop(tools, "use_keyframe_insert_auto", text="", toggle=True)
         if screen.is_animation_playing and tools.use_keyframe_insert_auto:
             subsub = row.row()
             subsub.prop(tools, "use_record_with_nla", toggle=True)
 
-        layout.prop(scene, "sync_mode", text="")
-
-        layout.separator()
-
         row = layout.row(align=True)
         row.prop_search(scene.keying_sets_all, "active", scene, "keying_sets_all", text="")
         row.operator("anim.keyframe_insert", text="", icon='KEY_HLT')





More information about the Bf-blender-cvs mailing list