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>2021-03-25 13:38:21 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-03-25 14:15:28 +0300
commit51b316dbc2edfc754873b5d1ae3a7730f51a4a34 (patch)
tree8903be7337850585887eed1c63a2f47baa206c57 /release/scripts/startup/bl_operators/anim.py
parentf7fa0d3974c5a2f5c2181c6e14209f69df841d14 (diff)
Fix T83390: Remove temporary, for-one-release deprecation hints
Revert "Point users to new location of "Show Group Colors" option", commit rB6ed6741ee35930bf81fad9a5eb6bb17eea168725. These deprecation hints were intended for one release only, and thus can be removed now.
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,
)