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-19 06:23:27 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-07-19 06:23:27 +0300
commit97f0e38c07f1a861c829bfa17821726d33302232 (patch)
treef51807e067ee9cf852ecf3e83917f62f762da495 /UVtools.Core/FileFormats/ImageFile.cs
parent9b9438dd4033dff62f88f2c4d7be3060587d3702 (diff)
v0.6.3.0v0.6.3.0
* (Add) Layer remove button * (Add) Tool: Layer removal * (Add) Layer Repair tool: Remove empty layers * (Add) Issues: Remove a empty layer will effectively remove the layer * (Fix) SL1: When converting to other format in some cases the parameters on Printer Notes were not respected nor exported (#12) * (Fix) Pixel Editor: Draw pixels was painting on wrong positions after apply, when refreshing layer some pixels disappear (Spotted by Nicholas Taylor)
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 5e2761e..dd0dacb 100644
--- a/UVtools.Core/FileFormats/ImageFile.cs
+++ b/UVtools.Core/FileFormats/ImageFile.cs
@@ -68,7 +68,7 @@ namespace UVtools.Core.FileFormats
CvInvoke.CvtColor(ImageMat, ImageMat, ColorConversion.Bgr2Gray);
}
- LayerManager = new LayerManager(1);
+ LayerManager = new LayerManager(1, this);
this[0] = new Layer(0, ImageMat, Path.GetFileName(fileFullPath));
}