Güteschutz erweitert

This commit is contained in:
HuskyTeufel
2020-04-06 15:14:19 +02:00
parent f8a324210b
commit 3f428be5f6
13 changed files with 144 additions and 53 deletions

View File

@@ -312,11 +312,17 @@ namespace SanSystem
foreach(SavedBilder bild in schacht.SavedBilders)
{
string komment = String.Empty;
if (schacht.SchachtNummer != null)
{
komment = string.Format("{0} von Schacht: {1}", bild.Bildname, schacht.SchachtNummer);
}
bilderObjects.Add(new BilderObject()
{
Path = bild.Speicherpfad,
Kommentar = string.Format("{0} von Schacht: {1}", bild.Bildname, schacht.SchachtNummer)
});
Kommentar = komment
}) ;
}