Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pose_library/gui.py')
-rw-r--r--pose_library/gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pose_library/gui.py b/pose_library/gui.py
index e54a968a..4518527a 100644
--- a/pose_library/gui.py
+++ b/pose_library/gui.py
@@ -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)