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:
authorSybren A. Stüvel <sybren@blender.org>2020-05-15 12:54:17 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-05-15 12:54:17 +0300
commit7049d2dc584d1aada54848fbaa7be6d599972fb8 (patch)
treeb71ba0c8752c79ac5dd9ba703a1230b2135cb740 /release
parent19d822c6776948f8600313de4838f42e8e7f7ed5 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py1
1 files changed, 1 insertions, 0 deletions
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()