Rename BakeAction > NLA_OT_bake

This was already the bl_idname anyways.

Now this seems to be working, for single and multi-pose.
That said, the operator seems to fail on redo.
This commit is contained in:
Dalai Felinto 2018-10-19 16:35:09 -03:00
parent f10bc11061
commit 39ad5c3ef1
Notes: blender-bot 2023-02-14 10:21:15 +01:00
Referenced by issue #57313, Assert when pose relaxing
Referenced by issue #54650, Multi-Object-Mode: Pose Tools
1 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ class ANIM_OT_keying_set_export(Operator):
return {'RUNNING_MODAL'}
class BakeAction(Operator):
class NLA_OT_bake(Operator):
"""Bake all selected objects loc/scale/rotation animation to an action"""
bl_idname = "nla.bake"
bl_label = "Bake Action"
@ -420,7 +420,7 @@ class UpdateAnimatedTransformConstraint(Operator):
classes = (
ANIM_OT_keying_set_export,
BakeAction,
NLA_OT_bake,
ClearUselessActions,
UpdateAnimatedTransformConstraint,
)