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, 0 insertions, 13 deletions
diff --git a/release/scripts/startup/bl_operators/anim.py b/release/scripts/startup/bl_operators/anim.py
index 8ec9bececc5..ab56b24d186 100644
--- a/release/scripts/startup/bl_operators/anim.py
+++ b/release/scripts/startup/bl_operators/anim.py
@@ -430,22 +430,9 @@ 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):
- return False
-
-
classes = (
ANIM_OT_keying_set_export,
NLA_OT_bake,
ClearUselessActions,
UpdateAnimatedTransformConstraint,
- ANIM_OT_show_group_colors_deprecated,
)