From 6ed6741ee35930bf81fad9a5eb6bb17eea168725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 4 Dec 2020 10:13:55 +0100 Subject: Point users to new location of "Show Group Colors" option In ad85256e7108 the "Show Group Colors" option was changed from a per-editor option to a user preference. Since so many people wanted to turn this option off, this makes sense. However, this move caused some confusion because the option was just gone from the menu. This commit adds a dummy menu item. It's disabled, and the tooltip explains that the option can now be found in Preferences. T83390 was created to track the removal of these hints. Reviewed by: Severin Differential Revision: https://developer.blender.org/D9735 --- release/scripts/startup/bl_operators/anim.py | 13 +++++++++++++ release/scripts/startup/bl_ui/space_dopesheet.py | 2 ++ release/scripts/startup/bl_ui/space_graph.py | 5 +++++ 3 files changed, 20 insertions(+) diff --git a/release/scripts/startup/bl_operators/anim.py b/release/scripts/startup/bl_operators/anim.py index ab79ebe3957..bb414b5ff89 100644 --- a/release/scripts/startup/bl_operators/anim.py +++ b/release/scripts/startup/bl_operators/anim.py @@ -429,9 +429,22 @@ class UpdateAnimatedTransformConstraint(Operator): return {'FINISHED'} +class ANIM_OT_show_group_colors_deprecated(Operator): + """This option moved to Preferences > Animation""" + + bl_idname = "anim.show_group_colors_deprecated" + bl_label = "Show Group Colors" + bl_options = {'REGISTER'} + + @classmethod + def poll(cls, context) -> bool: + return False + + classes = ( ANIM_OT_keying_set_export, NLA_OT_bake, ClearUselessActions, UpdateAnimatedTransformConstraint, + ANIM_OT_show_group_colors_deprecated, ) diff --git a/release/scripts/startup/bl_ui/space_dopesheet.py b/release/scripts/startup/bl_ui/space_dopesheet.py index 676e93f4ce9..0c222e8c023 100644 --- a/release/scripts/startup/bl_ui/space_dopesheet.py +++ b/release/scripts/startup/bl_ui/space_dopesheet.py @@ -347,6 +347,8 @@ class DOPESHEET_MT_view(Menu): col.active = context.space_data.mode != 'SHAPEKEY' col.prop(st, "show_sliders") + if bpy.app.version < (2, 93): + layout.operator("anim.show_group_colors_deprecated", icon='CHECKBOX_HLT') layout.prop(st, "show_interpolation") layout.prop(st, "show_extremes") layout.prop(st, "use_auto_merge_keyframes") diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py index 0c37b58a583..6ece6a4c841 100644 --- a/release/scripts/startup/bl_ui/space_graph.py +++ b/release/scripts/startup/bl_ui/space_graph.py @@ -18,6 +18,7 @@ # +import bpy from bpy.types import Header, Menu, Panel from bl_ui.space_dopesheet import ( DopesheetFilterPopoverBase, @@ -119,6 +120,10 @@ class GRAPH_MT_view(Menu): layout.prop(st, "use_realtime_update") layout.prop(st, "show_cursor") layout.prop(st, "show_sliders") + + if bpy.app.version < (2, 93): + layout.operator("anim.show_group_colors_deprecated", icon='CHECKBOX_HLT') + layout.prop(st, "use_auto_merge_keyframes") if st.mode != 'DRIVERS': -- cgit v1.2.3