NLA: Update context menu to include meta strip operators

The meta strip operator is available in the Add menu, but not in the
context menu.

This patch adds these two operators to the context menu:
* nla.meta_add
* nla.meta_remove

Reviewed By: sybren, RiggingDojo

Differential Revision: https://developer.blender.org/D16353
This commit is contained in:
Jason Schleifer 2022-11-10 12:04:31 +01:00 committed by Sybren A. Stüvel
parent 8ef092d2d8
commit 0b4bd3ddc0
1 changed files with 5 additions and 0 deletions

View File

@ -310,6 +310,11 @@ class NLA_MT_context_menu(Menu):
layout.separator()
layout.operator("nla.meta_add")
layout.operator("nla.meta_remove")
layout.separator()
layout.operator("nla.swap")
layout.separator()