long candy support

This commit is contained in:
meelstorm
2025-08-28 16:30:52 +02:00
parent bf13a5ea2d
commit d52c844b5d
24 changed files with 1714 additions and 16 deletions

View File

@@ -31,7 +31,7 @@ public partial class StatisticsVM: ObservableObject,IEventHandler<ImageProcessed
{
RecipeName= @event.RecipeName;
ProcessingTime = (int)@event.AnalysisTime.TotalMilliseconds + "ms";
Total++;
if (!@event.HasError)
@@ -47,7 +47,7 @@ public partial class StatisticsVM: ObservableObject,IEventHandler<ImageProcessed
}
StatisticsDetails = string.Join(Environment.NewLine, _errorTypes.Select(e => $"{e.Key}: {e.Value}"));
ProcessingTime = (int)@event.AnalysisTime.TotalMilliseconds + "ms";
}
public void Handle(SessionStartedEvent @event)