add prints for stl export
This commit is contained in:
parent
9faf22650e
commit
01c34130b7
|
|
@ -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__
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue