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:
authorAlexander Gavrilov <angavrilov@gmail.com>2022-02-11 11:42:33 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2022-02-11 11:42:33 +0300
commitfe2bb92a6511bee3539d6550bfa733b0ba85f440 (patch)
treefa3e71bffaf91c7b9cf65505583f2d099cb52b44 /io_scene_obj
parentf7876b71cdaa7f9627d1ce9de2e876efaaca19af (diff)
parent363165169709cb1da5a34850c1f259e014c3bdc6 (diff)
Merge branch 'blender-v3.1-release'
Diffstat (limited to 'io_scene_obj')
-rw-r--r--io_scene_obj/__init__.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 8b5dad5f..58f60ba1 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -485,12 +485,16 @@ def register():
bpy.utils.register_class(cls)
bpy.types.TOPBAR_MT_file_import.append(menu_func_import)
- bpy.types.TOPBAR_MT_file_export.append(menu_func_export)
+ # Disabling the menu entry for this python exporter now that
+ # there is a C++ exporter. For now, leaving the actual
+ # export_scene.obj pointing at the python version.
+ # bpy.types.TOPBAR_MT_file_export.append(menu_func_export)
def unregister():
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)
- bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
+ # See comment above about menu for the python exporter
+ # bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
for cls in classes:
bpy.utils.unregister_class(cls)