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:
Diffstat (limited to 'UVtools.WPF/MainWindow.Issues.cs')
-rw-r--r--UVtools.WPF/MainWindow.Issues.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/UVtools.WPF/MainWindow.Issues.cs b/UVtools.WPF/MainWindow.Issues.cs
index 6cc6122..88bce1f 100644
--- a/UVtools.WPF/MainWindow.Issues.cs
+++ b/UVtools.WPF/MainWindow.Issues.cs
@@ -24,6 +24,7 @@ using MoreLinq;
using UVtools.Core;
using UVtools.Core.EmguCV;
using UVtools.Core.Extensions;
+using UVtools.Core.FileFormats;
using UVtools.Core.Layers;
using UVtools.Core.Operations;
using UVtools.WPF.Extensions;
@@ -467,6 +468,13 @@ namespace UVtools.WPF
public async Task OnClickDetectIssues()
{
if (!IsFileLoaded) return;
+ if (SlicerFile.DecodeType == FileFormat.FileDecodeType.Partial)
+ {
+ await this.MessageBoxError("The file was open in partial mode and the detect issues is unable to run in this mode.\n" +
+ "Please reload the file in full mode in order to use detect issues.", "Unable to run in partial mode");
+ return;
+
+ }
await ComputeIssues(
GetIslandDetectionConfiguration(),
GetOverhangDetectionConfiguration(),