From 01c34130b7f123feff208677c4596442e7062ee6 Mon Sep 17 00:00:00 2001 From: Thomas-Alexandre Moreau Date: Thu, 6 Feb 2025 17:28:55 +0100 Subject: [PATCH] add prints for stl export --- MultiExport.FCMacro | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MultiExport.FCMacro b/MultiExport.FCMacro index a93fab3..3de98bc 100755 --- a/MultiExport.FCMacro +++ b/MultiExport.FCMacro @@ -178,6 +178,7 @@ class WindowDialog(): Mesh.export(__obj__, filename, options) else: Mesh.export(__obj__, filename) + print(f'Export STL de {__obj__[0].Label}.stl') __obj__.clear() if singleMode: filename = u"" + outputRacine + '--' + __obj__[0].Label + '.stl' if len(__obj__) == 1 else u"" + outputRacine + '.stl' @@ -186,6 +187,10 @@ class WindowDialog(): Mesh.export(__obj__, filename, options) else: Mesh.export(__obj__, filename) + if len(__obj__) == 1: + print(f'Export STL de {__obj__[0].Label}.stl') + else: + print(f'Export STL de {os.path.basename(outputRacine)}.stl') del __obj__