From 61d5b389e2424ff22576cc07b99260f952f6f97b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 11 Feb 2011 01:29:13 +0000 Subject: add in module register calls (first pass, batch replace, will test each addon next). --- system_property_chart.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'system_property_chart.py') diff --git a/system_property_chart.py b/system_property_chart.py index 8917d413..61d0b2c6 100644 --- a/system_property_chart.py +++ b/system_property_chart.py @@ -219,6 +219,8 @@ class CopyPropertyChart(bpy.types.Operator): def register(): + bpy.utils.register_module(__name__) + Scene = bpy.types.Scene for cls in View3DEditProps, SequencerEditProps: @@ -232,6 +234,8 @@ def register(): def unregister(): + bpy.utils.unregister_module(__name__) + Scene = bpy.types.Scene for cls in View3DEditProps, SequencerEditProps: -- cgit v1.2.3