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.Core/FileFormats/ChituboxZipFile.cs')
-rw-r--r--UVtools.Core/FileFormats/ChituboxZipFile.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/UVtools.Core/FileFormats/ChituboxZipFile.cs b/UVtools.Core/FileFormats/ChituboxZipFile.cs
index 6a29dff..7d663e8 100644
--- a/UVtools.Core/FileFormats/ChituboxZipFile.cs
+++ b/UVtools.Core/FileFormats/ChituboxZipFile.cs
@@ -168,7 +168,7 @@ namespace UVtools.Core.FileFormats
set => base.MachineZ = HeaderSettings.MachineZ = (float)Math.Round(value, 2);
}
- public override bool MirrorDisplay
+ public override bool DisplayMirror
{
get => HeaderSettings.Mirror > 0;
set
@@ -360,7 +360,7 @@ namespace UVtools.Core.FileFormats
GCodePositioningType = GCodeBuilder.GCodePositioningTypes.Absolute,
GCodeSpeedUnit = GCodeBuilder.GCodeSpeedUnits.MillimetersPerMinute,
GCodeTimeUnit = GCodeBuilder.GCodeTimeUnits.Milliseconds,
- GCodeShowImageType = GCodeBuilder.GCodeShowImageTypes.FilenameNonZeroPNG,
+ GCodeShowImageType = GCodeBuilder.GCodeShowImageTypes.FilenamePng1Started,
LayerMoveCommand = GCodeBuilder.GCodeMoveCommands.G0,
EndGCodeMoveCommand = GCodeBuilder.GCodeMoveCommands.G1
};
@@ -468,9 +468,6 @@ namespace UVtools.Core.FileFormats
progress.ItemCount = LayerCount;
- var gcode = GCodeStr;
- float lastPostZ = LayerHeight;
-
for (uint layerIndex = 0; layerIndex < LayerCount; layerIndex++)
{
if (progress.Token.IsCancellationRequested) break;