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>2010-08-24 10:52:16 +0400
committerJoshua Leung <aligorith@gmail.com>2010-08-24 10:52:16 +0400
commit22e1ca4134451224129804d80fd208047a29d5c1 (patch)
tree82d25f57aa1611110911a3307df5b05a05a60e3a /release
parentadae794233e168aa4046b560c43db6b48725cc08 (diff)
Fixing KeyingSets breakage from recent RNA renaming madness.
* 'Active' on TimeLine header needs to show choices ALL KeyingSets available (Builtins + Scene-Absolutes), not just the ones in Scene ("Absolute Paths") * The active KeyingSet setting is needed/used-by for both of these.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_time.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py
index 31a32b81e6e..168e6f63c55 100644
--- a/release/scripts/ui/space_time.py
+++ b/release/scripts/ui/space_time.py
@@ -77,7 +77,7 @@ class TIME_HT_header(bpy.types.Header):
layout.separator()
row = layout.row(align=True)
- row.prop_search(scene.keying_sets, "active", scene, "keying_sets", text="")
+ row.prop_search(scene.keying_sets_all, "active", scene, "keying_sets_all", text="")
row.operator("anim.keyframe_insert", text="", icon='KEY_HLT')
row.operator("anim.keyframe_delete", text="", icon='KEY_DEHLT')