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-07-24 06:38:44 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-07-24 06:38:44 +0300
commitbf0feb805caac533dac58da6df2077b82225eafa (patch)
treec9913f37cd90e9c2805f99251abfa48c8d781b23 /UVtools.Core/FileFormats/ImageFile.cs
parent07652d6b880572634ea6a8591cbeaf0f3f6d734b (diff)
v0.6.3.2v0.6.3.2
* (Add) Tool: Layer Re-Height - Allow change layer height * (Add) Setting: Gap closing default iterations * (Add) Setting: Noise removal default iterations * (Add) Setting: Repair layers and islands by default * (Add) Setting: Remove empty layers by default * (Add) Setting: Repair resin traps by default * (Change) Setting: "Reset to Defaults" changed to "Reset All Settings" * (Fix) CWS: Lack of ';' on GCode was preventing printer from printing
Diffstat (limited to 'UVtools.Core/FileFormats/ImageFile.cs')
-rw-r--r--UVtools.Core/FileFormats/ImageFile.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UVtools.Core/FileFormats/ImageFile.cs b/UVtools.Core/FileFormats/ImageFile.cs
index dd0dacb..661ef33 100644
--- a/UVtools.Core/FileFormats/ImageFile.cs
+++ b/UVtools.Core/FileFormats/ImageFile.cs
@@ -28,7 +28,7 @@ namespace UVtools.Core.FileFormats
public override uint ResolutionX => (uint)ImageMat.Width;
public override uint ResolutionY => (uint)ImageMat.Height;
public override byte AntiAliasing { get; } = 1;
- public override float LayerHeight { get; } = 0;
+ public override float LayerHeight { get; set; } = 0;
public override ushort InitialLayerCount { get; } = 1;
public override float InitialExposureTime { get; } = 0;
public override float LayerExposureTime { get; } = 0;