From d1f8f977e82a6c4c0215ce48cbf2c0e8667a09c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Concei=C3=A7=C3=A3o?= Date: Sun, 1 Jan 2023 20:18:45 +0000 Subject: [PATCH] Fix assign of ResolutionY --- UVtools.Core/Layers/Layer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UVtools.Core/Layers/Layer.cs b/UVtools.Core/Layers/Layer.cs index 7b99a52..e2dba00 100644 --- a/UVtools.Core/Layers/Layer.cs +++ b/UVtools.Core/Layers/Layer.cs @@ -887,7 +887,7 @@ public class Layer : BindableBase, IEquatable, IEquatable { CompressedBytes = CompressMat(value, _compressionCodec); _resolutionX = (uint)value.Width; - _resolutionX = (uint)value.Height; + _resolutionY = (uint)value.Height; } else {