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:
authorAras Pranckevicius <aras@nesnausk.org>2022-03-31 15:47:35 +0300
committerAras Pranckevicius <aras@nesnausk.org>2022-03-31 15:47:35 +0300
commita1f9883f530edea59313fedf0ce36dba887e27a1 (patch)
treee2d0bc7634715766cda0b36accbda44aca43af25
parentf6d72972320a891b00d3d9e4519f89f24963bae6 (diff)
parent19337ef729b1dea60c075fb85db69d5cc8c60f07 (diff)
Merge branch 'blender-v3.1-release'
-rw-r--r--io_scene_obj/__init__.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 58f60ba1..8b5dad5f 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -485,16 +485,12 @@ def register():
bpy.utils.register_class(cls)
bpy.types.TOPBAR_MT_file_import.append(menu_func_import)
- # 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)
+ bpy.types.TOPBAR_MT_file_export.append(menu_func_export)
def unregister():
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import)
- # See comment above about menu for the python exporter
- # bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
+ bpy.types.TOPBAR_MT_file_export.remove(menu_func_export)
for cls in classes:
bpy.utils.unregister_class(cls)