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>2018-04-23 14:53:03 +0300
committerJoshua Leung <aligorith@gmail.com>2018-04-23 15:05:55 +0300
commit3f21023f2493d84e03bee0d2aa557afb8cd6064f (patch)
treecef0ecd8d481bc1c883b4a4a59d1d38b5c6c57a2 /release/scripts/startup/bl_ui/space_time.py
parent9acf3a10cfa8d50e705347d7fe0d7601bc017fd5 (diff)
Fix: View All/Selected entries in new "timeline" not working
These entries were still referring to the old standalone timeline editor
Diffstat (limited to 'release/scripts/startup/bl_ui/space_time.py')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_time.py b/release/scripts/startup/bl_ui/space_time.py
index c1c73c35258..95844eeb667 100644
--- a/release/scripts/startup/bl_ui/space_time.py
+++ b/release/scripts/startup/bl_ui/space_time.py
@@ -146,8 +146,9 @@ class TIME_MT_view(Menu):
layout.separator()
- layout.operator("time.view_all")
- layout.operator("time.view_frame")
+ # NOTE: "action" now, since timeline is in the dopesheet editor, instead of as own editor
+ layout.operator("action.view_all")
+ layout.operator("action.view_frame")
layout.separator()