Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2020-09-16 22:31:49 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-09-16 22:31:49 +0300
commit49a6299cefd503f84d4af6a88f43b4843f9da2b2 (patch)
treee532e22e0f032ab2f1079a22512c0c6379dac264 /UVtools.GUI
parent67150bde859ce6da84d208b19f62dc8221072b8e (diff)
v0.8.2.2
* (Add) Support for PHZ zip files when renamed to .zip * (Fix) ZIP: Allow to cancel on gather layers stage * (Fix) ZIP: Thumbnails not showing nor saving
Diffstat (limited to 'UVtools.GUI')
-rw-r--r--UVtools.GUI/FrmMain.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/UVtools.GUI/FrmMain.cs b/UVtools.GUI/FrmMain.cs
index e989c36..0678bbe 100644
--- a/UVtools.GUI/FrmMain.cs
+++ b/UVtools.GUI/FrmMain.cs
@@ -1424,10 +1424,6 @@ namespace UVtools.GUI
}
catch (OperationCanceledException)
{
- if (File.Exists(dialog.FileName))
- {
- File.Delete(dialog.FileName);
- }
}
catch (Exception ex)
{
@@ -1437,6 +1433,7 @@ namespace UVtools.GUI
extraMessage = "Note: When converting from SL1 make sure you have the correct printer selected, you MUST use a UVtools base printer.\n" +
"Go to \"Help\" -> \"Install profiles into PrusaSlicer\" to install printers.\n";
}
+
MessageBox.Show($"Convertion was not successful! Maybe not implemented...\n{extraMessage}{ex.Message}",
"Convertion unsuccessful", MessageBoxButtons.OK, MessageBoxIcon.Error);
}