[Bf-blender-cvs] [7049d2dc584] blender-v2.83-release: Fix T76778: Dopesheet "Show Errors" affects timeline

Sybren A. Stüvel noreply at git.blender.org
Fri May 15 12:00:02 CEST 2020


Commit: 7049d2dc584d1aada54848fbaa7be6d599972fb8
Author: Sybren A. Stüvel
Date:   Fri May 15 11:54:17 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rB7049d2dc584d1aada54848fbaa7be6d599972fb8

Fix T76778: Dopesheet "Show Errors" affects timeline

Since the timeline is a variation of the dopesheet, it also respects
some of the dopesheet settings.

The "Selected Only" setting is overridden from a scene property (since
rB4904eadc0f38) and the "Display Hidden" dopesheet setting seems to be
ignored.

This commit adds the remaining "Show Errors" setting to the menu,
allowing it to be updated from the timeline.

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

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 629958a783e..257e0c26a5d 100644
--- a/release/scripts/startup/bl_ui/space_time.py
+++ b/release/scripts/startup/bl_ui/space_time.py
@@ -142,6 +142,7 @@ class TIME_MT_view(Menu):
         layout.separator()
 
         layout.prop(scene, "show_keys_from_selected_only")
+        layout.prop(st.dopesheet, "show_only_errors")
 
         layout.separator()



More information about the Bf-blender-cvs mailing list