Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2009-08-17 04:22:04 +0400
committerThomas Dinges <blender@dingto.org>2009-08-17 04:22:04 +0400
commit5f7ed837358e8bb5bdc94926156154515aa9d633 (patch)
tree2e029c1d4116ef2967b3de5aa5292fcd5ed952d8 /release
parentbee5f9f09e0e2fd35c59b190449b43332a6be0b7 (diff)
2.5 Timeline:
Some fixes: * Added missing "Layered" Button. * Jump to last keyframe operator was called incorrect.
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_time.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/release/ui/space_time.py b/release/ui/space_time.py
index 427d52650b3..645e3e2b4b4 100644
--- a/release/ui/space_time.py
+++ b/release/ui/space_time.py
@@ -40,7 +40,7 @@ class TIME_HT_header(bpy.types.Header):
row = layout.row(align=True)
row.itemO("screen.frame_jump", text="", icon='ICON_REW')
- row.itemO("screen.keyframe_jump", text="", icon='ICON_PREV_KEYFRAME')
+ row.item_booleanO("screen.keyframe_jump", "next", False, text="", icon='ICON_PREV_KEYFRAME')
if not screen.animation_playing:
row.item_booleanO("screen.animation_play", "reverse", True, text="", icon='ICON_PLAY_REVERSE')
row.itemO("screen.animation_play", text="", icon='ICON_PLAY')
@@ -53,18 +53,21 @@ class TIME_HT_header(bpy.types.Header):
layout.itemS()
+ layout.itemR(rd, "sync_audio", text="", toggle=True, icon='ICON_SPEAKER')
+
+ layout.itemS()
+
row = layout.row(align=True)
row.itemR(tools, "enable_auto_key", text="", toggle=True, icon='ICON_REC')
sub = row.row()
sub.active = tools.enable_auto_key
sub.itemR(tools, "autokey_mode", text="")
+ if screen.animation_playing and tools.enable_auto_key:
+ subsub = row.row()
+ subsub.itemR(tools, "record_with_nla", toggle=True)
layout.itemS()
-
- layout.itemR(rd, "sync_audio", text="", toggle=True, icon='ICON_SPEAKER')
-
- layout.itemS()
-
+
row = layout.row(align=True)
row.itemR(scene, "active_keyingset")
row.itemO("anim.insert_keyframe", text="", icon="ICON_KEY_HLT")