From 8664a1ebbf09ab9ffc19aabf6564e9e1db2bce36 Mon Sep 17 00:00:00 2001 From: TiberiumFusion <6332277+TiberiumFusion@users.noreply.github.com> Date: Wed, 10 Feb 2021 14:26:54 -0500 Subject: [PATCH] Unique panel name --- shape_key_splitter/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shape_key_splitter/__init__.py b/shape_key_splitter/__init__.py index 5bdc670..af5d59e 100644 --- a/shape_key_splitter/__init__.py +++ b/shape_key_splitter/__init__.py @@ -1,7 +1,7 @@ bl_info = { "name": "Shape Key Splitter", "author": "TiberiumFusion", - "version": (1, 0, 0, 0), + "version": (1, 0, 0, 1), "blender": (2, 78, 0), "location": "Object > Tools > Shape Key Splitter", "description": "Splits and merges shape keys on axis boundaries. Useful for separating and combining the left and right halves of expressions.", @@ -178,7 +178,7 @@ def cancel(self, context): class OBJECT_PT_ShapeKeySplitter_Panel(bpy.types.Panel): bl_label = "Shape Key Splitter" - bl_idname = "OBJECT_PT_custom_panel" + bl_idname = "OBJECT_PT_shape_key_splitter_panel" bl_space_type = "VIEW_3D" bl_region_type = "TOOLS" bl_category = "Tools"