Skip to content

Commit

Permalink
Conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
EmineTopcu committed Feb 1, 2024
1 parent 01c4a76 commit d61c942
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SiliFish.UI/Controls/Display/ModelOutputControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -668,8 +668,8 @@ private void GetPlotSubset()

tPlotStart = (int)ePlotStart.Value;
tPlotEnd = (int)ePlotEnd.Value;
if (tPlotEnd > model.RunParam.MaxTime)
tPlotEnd = model.RunParam.MaxTime;
if (tPlotEnd > model.MaxTime)
tPlotEnd = model.MaxTime;
}
private void linkExportPlotData_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Expand Down Expand Up @@ -810,7 +810,7 @@ private void listPlotHistory_ItemsImport(object sender, EventArgs e)
Selection = plotSelection
};
PlotGenerator PG = new();
(string Title, Charts) = PG.GetPlotData(lastPlot, simulation.Model, Cells, Pools, tPlotStart, tPlotEnd);
(string Title, Charts) = PG.GetPlotData(lastPlot, simulation, Cells, Pools, tPlotStart, tPlotEnd);
errorMessage = PG.errorMessage;
return (Title, Charts);
}
Expand Down Expand Up @@ -1191,7 +1191,7 @@ private void Animate()
try
{
if (simulation == null || !simulation.SimulationRun) return;
htmlAnimation = AnimationGenerator.GenerateAnimation(simulation.Model, tAnimStart, tAnimEnd, (double)tAnimdt, out lastAnimationSpineCoordinates);
htmlAnimation = AnimationGenerator.GenerateAnimation(simulation, tAnimStart, tAnimEnd, (double)tAnimdt, out lastAnimationSpineCoordinates);
Invoke(CompleteAnimation);
}
catch { Invoke(CancelAnimation); }
Expand Down
Binary file modified SiliFish.UI/Resources/BuildDate.txt
Binary file not shown.
Binary file modified SiliFish/Resources/BuildDate.txt
Binary file not shown.

0 comments on commit d61c942

Please sign in to comment.