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:
Diffstat (limited to 'release/scripts/startup/bl_operators/anim.py')
-rw-r--r--release/scripts/startup/bl_operators/anim.py13
1 files changed, 13 insertions, 0 deletions
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,
)