Fix MatterSlice engine path.

This commit is contained in:
Kevin Pope 2014-08-27 16:41:25 -07:00
parent 1a0a03542b
commit 8b3a0d8e13

View file

@ -33,11 +33,11 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
{
if (OsInformation.OperatingSystem == OSType.Android || OsInformation.OperatingSystem == OSType.Mac || SlicingQueue.runInProcess)
{
return System.IO.File.Exists(this.GetEnginePath());
return true;
}
else
{
return true;
return System.IO.File.Exists(this.GetEnginePath());
}
}