Export to bambu studio
This commit is contained in:
parent
25123d29a6
commit
57ac7d9415
4 changed files with 174 additions and 0 deletions
|
|
@ -245,6 +245,19 @@ namespace MatterHackers.MatterControl
|
|||
return;
|
||||
}
|
||||
|
||||
if (exportPlugin is ExportStlToExecutable)
|
||||
{
|
||||
ApplicationController.Instance.Tasks.Execute(
|
||||
"Saving".Localize() + "...",
|
||||
printer,
|
||||
async (reporter, cancellationTokenSource) =>
|
||||
{
|
||||
await exportPlugin.Generate(libraryItems, null, reporter, cancellationTokenSource.Token);
|
||||
});
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
UiThread.RunOnIdle(() =>
|
||||
{
|
||||
string title = ApplicationController.Instance.ProductName + " - " + "Export File".Localize();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue