add graphics elements on classic schedule items (#2380)

This commit is contained in:
Jason Dove
2025-09-05 11:53:29 +00:00
committed by GitHub
parent a6de96c2ea
commit 40ab7c2cff
31 changed files with 12911 additions and 6 deletions
@@ -314,6 +314,17 @@ public abstract class ProgramScheduleItemCommandBase
});
}
foreach (int graphicsElementId in item.GraphicsElementIds)
{
result.ProgramScheduleItemGraphicsElements ??= [];
result.ProgramScheduleItemGraphicsElements.Add(
new ProgramScheduleItemGraphicsElement
{
ProgramScheduleItem = result,
GraphicsElementId = graphicsElementId
});
}
return result;
}