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:
authorCampbell Barton <ideasman42@gmail.com>2010-02-17 18:14:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-17 18:14:09 +0300
commit79b7234c5e653d709a0987a7678d1a55b2c380a5 (patch)
treede5f10abc2a605eb8db22b190ea9f6056c7100bf /release/scripts/ui/space_time.py
parentf5c9574e6878281bbf0542de0b3b74a7655ce79c (diff)
rename rna props for auto-keying to be consistant, user prefs were graying out auto key options that were still in use.
Diffstat (limited to 'release/scripts/ui/space_time.py')
-rw-r--r--release/scripts/ui/space_time.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_time.py b/release/scripts/ui/space_time.py
index b6a01ef6ab9..552bf05181d 100644
--- a/release/scripts/ui/space_time.py
+++ b/release/scripts/ui/space_time.py
@@ -67,8 +67,8 @@ class TIME_HT_header(bpy.types.Header):
row.operator("screen.frame_jump", text="", icon='FF').end = True
row = layout.row(align=True)
- row.prop(tools, "enable_auto_key", text="", toggle=True, icon='REC')
- if screen.animation_playing and tools.enable_auto_key:
+ row.prop(tools, "use_auto_keying", text="", toggle=True, icon='REC')
+ if screen.animation_playing and tools.use_auto_keying:
subsub = row.row()
subsub.prop(tools, "record_with_nla", toggle=True)