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/ImageFile.cs')
-rw-r--r--UVtools.Core/FileFormats/ImageFile.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/UVtools.Core/FileFormats/ImageFile.cs b/UVtools.Core/FileFormats/ImageFile.cs
index 668e2a8..42c4323 100644
--- a/UVtools.Core/FileFormats/ImageFile.cs
+++ b/UVtools.Core/FileFormats/ImageFile.cs
@@ -20,8 +20,13 @@ namespace UVtools.Core.FileFormats
new ("tga", "TGA"),
};
public override PrintParameterModifier[] PrintParameterModifiers { get; } = null;
- public override byte ThumbnailsCount { get; } = 4;
- public override Size[] ThumbnailsOriginalSize { get; } = null;
+
+ public override Size[] ThumbnailsOriginalSize { get; } = {
+ Size.Empty,
+ Size.Empty,
+ Size.Empty,
+ Size.Empty
+ };
public override uint ResolutionX
{
get => (uint) ImageMat.Width;