IO: remove experimental label from C++ based STL import/export

The Python STL addon got "legacy" labels added
This commit is contained in:
Aras Pranckevicius
2023-12-23 23:09:56 +02:00
parent 6f21b09e73
commit 0fb89c2301
+2 -2
View File
@@ -485,7 +485,7 @@ class TOPBAR_MT_file_import(Menu):
if bpy.app.build_options.io_ply:
self.layout.operator("wm.ply_import", text="Stanford PLY (.ply)")
if bpy.app.build_options.io_stl:
self.layout.operator("wm.stl_import", text="STL (.stl) (experimental)")
self.layout.operator("wm.stl_import", text="STL (.stl)")
class TOPBAR_MT_file_export(Menu):
@@ -515,7 +515,7 @@ class TOPBAR_MT_file_export(Menu):
if bpy.app.build_options.io_ply:
self.layout.operator("wm.ply_export", text="Stanford PLY (.ply)")
if bpy.app.build_options.io_stl:
self.layout.operator("wm.stl_export", text="STL (.stl) (experimental)")
self.layout.operator("wm.stl_export", text="STL (.stl)")
class TOPBAR_MT_file_external_data(Menu):