From b2e39919ad8b7b6d2c3318744b1ce6205b591e5f Mon Sep 17 00:00:00 2001 From: mahreeoocedev01 Date: Tue, 26 Nov 2024 19:23:18 +0200 Subject: [PATCH] Fixed addon activation error in Blender 4.3 Due to API changes in Blender 4.3, "gpencil" has been replaced by "greasepencil", leading to the add-on not being able to activate. --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index d84c04a..f2421c8 100644 --- a/__init__.py +++ b/__init__.py @@ -129,7 +129,7 @@ class RESOLUTIONUVW_PG_main(PropertyGroup): bpy.types.VIEW3D_MT_edit_mesh_context_menu, - bpy.types.VIEW3D_MT_gpencil_edit_context_menu, + bpy.types.VIEW3D_MT_greasepencil_edit_context_menu, bpy.types.VIEW3D_MT_edit_lattice_context_menu,