Skip to content
Snippets Groups Projects
Commit 2aa81ec3 authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Pose Library: append to correct menu class for asset browser

Append the pose library operators to the new `ASSETBROWSER_MT_context_menu`
class instead of the old `FILEBROWSER_MT_context_menu` class.
parent e69c63dd
No related branches found
No related tags found
No related merge requests found
......@@ -209,7 +209,7 @@ def register() -> None:
WindowManager.pose_assets = bpy.props.CollectionProperty(type=AssetHandle)
bpy.types.UI_MT_list_item_context_menu.prepend(pose_library_list_item_context_menu)
bpy.types.FILEBROWSER_MT_context_menu.prepend(pose_library_list_item_context_menu)
bpy.types.ASSETBROWSER_MT_context_menu.prepend(pose_library_list_item_context_menu)
def unregister() -> None:
......@@ -219,4 +219,4 @@ def unregister() -> None:
del WindowManager.pose_assets
bpy.types.UI_MT_list_item_context_menu.remove(pose_library_list_item_context_menu)
bpy.types.FILEBROWSER_MT_context_menu.remove(pose_library_list_item_context_menu)
bpy.types.ASSETBROWSER_MT_context_menu.remove(pose_library_list_item_context_menu)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment