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:
-rw-r--r--mesh_bsurfaces.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index 90caee2c..7a76dba2 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -4226,11 +4226,17 @@ classes = (
def register():
for cls in classes:
bpy.utils.register_class(cls)
+
+ for panel in panels:
+ bpy.utils.register_class(panel)
bpy.types.Scene.bsurfaces = PointerProperty(type=BsurfacesProps)
update_panel(None, bpy.context)
def unregister():
+ for panel in panels:
+ bpy.utils.unregister_class(panel)
+
for cls in classes:
bpy.utils.unregister_class(cls)