Fix assign of ResolutionY

This commit is contained in:
Tiago Conceição
2023-01-01 20:18:45 +00:00
parent cd2ad6bd33
commit d1f8f977e8
+1 -1
View File
@@ -887,7 +887,7 @@ public class Layer : BindableBase, IEquatable<Layer>, IEquatable<uint>
{
CompressedBytes = CompressMat(value, _compressionCodec);
_resolutionX = (uint)value.Width;
_resolutionX = (uint)value.Height;
_resolutionY = (uint)value.Height;
}
else
{