[Bf-blender-cvs] [2cfca7d9101] blender-v3.1-release: OBJ: mark the new 3.1+ exporter as experimental for now

Aras Pranckevicius noreply at git.blender.org
Thu Mar 31 14:41:07 CEST 2022


Commit: 2cfca7d9101dd6fca58b4e832bf96aaefbab1293
Author: Aras Pranckevicius
Date:   Thu Mar 31 15:38:59 2022 +0300
Branches: blender-v3.1-release
https://developer.blender.org/rB2cfca7d9101dd6fca58b4e832bf96aaefbab1293

OBJ: mark the new 3.1+ exporter as experimental for now

While it still has known issues/bugs/limitations. Also do not make it the very first export menu item, while at it.

Differential: D14512

===================================================================

M	release/scripts/startup/bl_ui/space_topbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 513c1c2ae2e..00049f053a9 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -481,7 +481,6 @@ class TOPBAR_MT_file_export(Menu):
     bl_owner_use_filter = False
 
     def draw(self, _context):
-        self.layout.operator("wm.obj_export", text="Wavefront OBJ (.obj)")
         if bpy.app.build_options.collada:
             self.layout.operator("wm.collada_export",
                                  text="Collada (Default) (.dae)")
@@ -498,6 +497,8 @@ class TOPBAR_MT_file_export(Menu):
         if bpy.app.build_options.haru:
             self.layout.operator("wm.gpencil_export_pdf", text="Grease Pencil as PDF")
 
+        self.layout.operator("wm.obj_export", text="Wavefront (.obj) (experimental)")
+
 
 class TOPBAR_MT_file_external_data(Menu):
     bl_label = "External Data"



More information about the Bf-blender-cvs mailing list