fix(Annotation): Aktualisiert, um MarginLeft und Top bei der Berechnung von HorBoundary und VerBoundary zu berücksichtigen

This commit is contained in:
Developer 02 2025-03-20 15:52:21 +01:00
parent db84abf0e7
commit 0b87a3746a

View File

@ -58,10 +58,10 @@ public record Annotation
#region Boundary
[JsonIgnore]
public double HorBoundary => MarginLeft + Width;
public double HorBoundary => Left + Width;
[JsonIgnore]
public double VerBoundary => MarginTop + Height;
public double VerBoundary => Top + Height;
#endregion
#region BoundAnnot