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:
authorJoshua Leung <aligorith@gmail.com>2009-08-17 11:35:38 +0400
committerJoshua Leung <aligorith@gmail.com>2009-08-17 11:35:38 +0400
commit61b2ac04e37b59dc6feae941e43fc8256b2864ca (patch)
tree0c1578e3f7b2931b6187af46e315aee5dcefe708 /release
parent97db057a4cb872b5fecc027d1fcfface00d84ce3 (diff)
2.5 - Keying Sets Fixes
* Properly wrapped Keying Sets in RNA. Now the timeline header shows a popup for choosing KeyingSets instead of the nasty index button. * Fixed bugs in Outliner code for adding/removing array elements to Keying Sets. This makes it possible to add only the x and z location settings for an object for example.
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_time.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/ui/space_time.py b/release/ui/space_time.py
index 645e3e2b4b4..59d72525230 100644
--- a/release/ui/space_time.py
+++ b/release/ui/space_time.py
@@ -39,7 +39,7 @@ class TIME_HT_header(bpy.types.Header):
layout.itemS()
row = layout.row(align=True)
- row.itemO("screen.frame_jump", text="", icon='ICON_REW')
+ row.item_booleanO("screen.frame_jump", "end", False, text="", icon='ICON_REW')
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')
@@ -67,9 +67,9 @@ class TIME_HT_header(bpy.types.Header):
subsub.itemR(tools, "record_with_nla", toggle=True)
layout.itemS()
-
+
row = layout.row(align=True)
- row.itemR(scene, "active_keyingset")
+ row.itemR(scene, "active_keying_set", text="")
row.itemO("anim.insert_keyframe", text="", icon="ICON_KEY_HLT")
row.itemO("anim.delete_keyframe", text="", icon="ICON_KEY_DEHLT")