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>2014-04-25 19:36:34 +0400
committerJoshua Leung <aligorith@gmail.com>2014-04-27 13:59:17 +0400
commitc26105278fd770241763e04645dfcf5097e1c5d4 (patch)
tree9e4c985077bc604e4f2b7ab3ae3f678abab39b5c /release
parentb6e967be636d0e1bae842b2c52c76fd867a4784a (diff)
Fix T34993: "Jump to Next Keyframe" shortcut not related to the timeline viewable keyframes
Made the timeline option to only show keyframes from selected channels/data be a per-scene setting instead of the per-timeline option it was previously. This makes it easier for animators working on rigs with multiple bones (especially during the polishing phase), since now the timeline and jump to keyframe operators use the same setting to decide which subset of keyframes they need to consider. By default, this option is enabled by default. TODO: Extend this to the keyframe status shading on the active object name in the 3D view?
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_time.py b/release/scripts/startup/bl_ui/space_time.py
index c0d55536991..691a6cde5f1 100644
--- a/release/scripts/startup/bl_ui/space_time.py
+++ b/release/scripts/startup/bl_ui/space_time.py
@@ -122,6 +122,7 @@ class TIME_MT_view(Menu):
def draw(self, context):
layout = self.layout
+ scene = context.scene
st = context.space_data
layout.prop(st, "show_seconds")
@@ -130,7 +131,7 @@ class TIME_MT_view(Menu):
layout.separator()
layout.prop(st, "show_frame_indicator")
- layout.prop(st, "show_only_selected")
+ layout.prop(scene, "show_keys_from_selected_only")
layout.separator()