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>2018-12-17 09:26:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-17 09:32:42 +0300
commit8ec7429a70cca85dd3bc7f29f1ac5030aec7054f (patch)
tree34c1e703cdb3998f8ae5d3d0f2340afa828327a5 /release/scripts/startup/bl_ui/space_time.py
parent7fac1bfc203198583eb2e65caedec6b32c24484f (diff)
parent42b9df5907d041a5a68585308b1e11b2eac2c947 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'release/scripts/startup/bl_ui/space_time.py')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_ui/space_time.py b/release/scripts/startup/bl_ui/space_time.py
index 79c0c5264e1..47c8381001e 100644
--- a/release/scripts/startup/bl_ui/space_time.py
+++ b/release/scripts/startup/bl_ui/space_time.py
@@ -33,12 +33,12 @@ class TIME_HT_editor_buttons(Header):
@staticmethod
def draw_header(context, layout):
scene = context.scene
- toolsettings = context.tool_settings
+ tool_settings = context.tool_settings
screen = context.screen
layout.separator_spacer()
- layout.prop(toolsettings, "use_keyframe_insert_auto", text="", toggle=True)
+ layout.prop(tool_settings, "use_keyframe_insert_auto", text="", toggle=True)
row = layout.row(align=True)
row.operator("screen.frame_jump", text="", icon='REW').end = False
@@ -208,8 +208,8 @@ def marker_menu_generic(layout):
layout.operator("screen.marker_jump", text="Jump to Previous Marker").next = False
layout.separator()
- ts = context.tool_settings
- layout.prop(ts, "lock_markers")
+ tool_settings = context.tool_settings
+ layout.prop(tool_settings, "lock_markers")
###################################
@@ -276,7 +276,7 @@ class TIME_PT_keyframing_settings(TimelinePanelButtons, Panel):
layout = self.layout
scene = context.scene
- toolsettings = context.tool_settings
+ tool_settings = context.tool_settings
userprefs = context.user_preferences
col = layout.column(align=True)
@@ -288,17 +288,17 @@ class TIME_PT_keyframing_settings(TimelinePanelButtons, Panel):
col = layout.column(align=True)
col.label(text="New Keyframe Type:")
- col.prop(toolsettings, "keyframe_type", text="")
+ col.prop(tool_settings, "keyframe_type", text="")
col = layout.column(align=True)
col.label(text="Auto Keyframing:")
row = col.row()
- row.prop(toolsettings, "auto_keying_mode", text="")
- row.prop(toolsettings, "use_keyframe_insert_keyingset", text="")
+ row.prop(tool_settings, "auto_keying_mode", text="")
+ row.prop(tool_settings, "use_keyframe_insert_keyingset", text="")
if not userprefs.edit.use_keyframe_insert_available:
- col.prop(toolsettings, "use_record_with_nla", text="Layered Recording")
+ col.prop(tool_settings, "use_record_with_nla", text="Layered Recording")
- layout.prop(toolsettings, "use_keyframe_cycle_aware")
+ layout.prop(tool_settings, "use_keyframe_cycle_aware")
###################################