feat(Hintergrund): Locate add, um die Position des Hintergrunds anhand anderer Anmerkungen zu berechnen.

- Standort des Hintergrunds zu Anmerkungen hinzugefügt
This commit is contained in:
Developer 02
2025-04-23 18:13:46 +02:00
parent e72ea534e5
commit d75da655d2
4 changed files with 57 additions and 19 deletions

View File

@@ -64,7 +64,10 @@ public class AnnotationParams
var dict = _annots.ToDictionary(a => a.Name.ToLower(), a => a as IAnnotation);
if (Background is not null)
{
Background.Locate(_annots);
dict.Add(Background.Name.ToLower(), Background);
}
return dict;
}