Skip to content

Commit

Permalink
fixed improper registration on unload
Browse files Browse the repository at this point in the history
  • Loading branch information
flipphillips committed Mar 31, 2023
1 parent 4f6fa04 commit 844e5e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def unregister():
bpy.utils.unregister_class(GPT4_OT_Execute)
bpy.utils.unregister_class(GPT4_PT_Panel)
bpy.utils.unregister_class(GPT4_OT_ClearChat)
bpy.utils.register_class(GPT4_OT_ShowCode)
bpy.utils.register_class(GPT4_OT_DeleteMessage)
bpy.utils.unregister_class(GPT4_OT_ShowCode)
bpy.utils.unegister_class(GPT4_OT_DeleteMessage)

bpy.types.VIEW3D_MT_mesh_add.remove(menu_func)
clear_props()
Expand Down

0 comments on commit 844e5e8

Please sign in to comment.