remove deprecated function call on deinit

pull/127/head
TurBoss 2019-10-06 05:55:53 +02:00
rodzic d45f14a515
commit b032c4d5e3
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1325,5 +1325,5 @@ def unregister():
del s.cam_active_operation
del s.cam_machine
bpy.app.handlers.scene_update_pre.remove(ops.timer_update)
# bpy.app.handlers.scene_update_pre.remove(ops.timer_update)
# bpy.types.INFO_HT_header.remove(header_info)

Wyświetl plik

@ -512,7 +512,7 @@ def register():
bpy.types.Scene.print3d_settings=PointerProperty(type=PrintSettings)
bpy.app.handlers.scene_update_pre.append(timer_update_print3d)
# bpy.app.handlers.scene_update_pre.append(timer_update_print3d)
#bpy.types.INFO_HT_header.append(header_info_print3d)
@ -521,7 +521,7 @@ def unregister():
bpy.utils.unregister_module(__name__)
del bpy.types.Scene.print3d_settings
bpy.app.handlers.scene_update_pre.remove(timer_update_print3d)
# bpy.app.handlers.scene_update_pre.remove(timer_update_print3d)
#bpy.types.INFO_HT_header.remove(header_info_print3d)
#if __name__ == "__main__":