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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-17 14:00:18 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-17 14:00:18 +0300
commit06ee560da740d58c546b9b7bb70e0f4d146e4f25 (patch)
tree38ee5ae00d8616a66a10449bc2cc7dea1e2870d4 /release/scripts
parentad707115d5bcb61a2773a5b4c697d6f66c469105 (diff)
Fix misleading autokeyframing preference, it's only for new scenes.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_userpref.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index b5a139e509b..3d62fd309fb 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -455,12 +455,6 @@ class USERPREF_PT_animation_autokey(PreferencePanel):
bl_label = "Auto-Keyframing"
bl_parent_id = "USERPREF_PT_animation_keyframes"
- def draw_header(self, context):
- prefs = context.preferences
- edit = prefs.edit
-
- self.layout.prop(edit, "use_auto_keying", text="")
-
def draw_props(self, context, layout):
prefs = context.preferences
edit = prefs.edit
@@ -469,6 +463,7 @@ class USERPREF_PT_animation_autokey(PreferencePanel):
flow.prop(edit, "use_auto_keying_warning", text="Show Warning")
flow.prop(edit, "use_keyframe_insert_available", text="Only Insert Available")
+ flow.prop(edit, "use_auto_keying", text="Enable in New Scenes")
class USERPREF_PT_animation_fcurves(PreferencePanel):