mirror of
https://github.com/drewcassidy/TexTools-Blender
synced 2024-09-01 14:54:44 +00:00
Fix missing unregister method from botched merge
This commit is contained in:
parent
07e6fe4556
commit
e4455b442e
@ -1390,7 +1390,7 @@ def register():
|
|||||||
for cls in classes:
|
for cls in classes:
|
||||||
register_class(cls)
|
register_class(cls)
|
||||||
|
|
||||||
#Register settings
|
#Register settings
|
||||||
bpy.types.Scene.texToolsSettings = bpy.props.PointerProperty(type=TexToolsSettings)
|
bpy.types.Scene.texToolsSettings = bpy.props.PointerProperty(type=TexToolsSettings)
|
||||||
|
|
||||||
#GUI Utilities
|
#GUI Utilities
|
||||||
@ -1456,7 +1456,9 @@ def register():
|
|||||||
bpy.types.VIEW3D_MT_uv_map.append(menu_VIEW3D_MT_uv_map)
|
bpy.types.VIEW3D_MT_uv_map.append(menu_VIEW3D_MT_uv_map)
|
||||||
bpy.types.VIEW3D_MT_object_context_menu.append(menu_VIEW3D_MT_object_context_menu)
|
bpy.types.VIEW3D_MT_object_context_menu.append(menu_VIEW3D_MT_object_context_menu)
|
||||||
|
|
||||||
|
def unregister():
|
||||||
|
#GUI Utilities
|
||||||
|
# utilities_ui.unregister()
|
||||||
|
|
||||||
from bpy.utils import unregister_class
|
from bpy.utils import unregister_class
|
||||||
for cls in reversed(classes):
|
for cls in reversed(classes):
|
||||||
|
Loading…
Reference in New Issue
Block a user