[Bf-blender-cvs] [3f21023f249] blender2.8: Fix: View All/Selected entries in new "timeline" not working

Joshua Leung noreply at git.blender.org
Mon Apr 23 14:06:03 CEST 2018


Commit: 3f21023f2493d84e03bee0d2aa557afb8cd6064f
Author: Joshua Leung
Date:   Mon Apr 23 13:53:03 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB3f21023f2493d84e03bee0d2aa557afb8cd6064f

Fix: View All/Selected entries in new "timeline" not working

These entries were still referring to the old standalone timeline editor

===================================================================

M	release/scripts/startup/bl_ui/space_time.py

===================================================================

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()



More information about the Bf-blender-cvs mailing list