Update ReportProgressRatio to new signature

This commit is contained in:
John Lewin 2017-06-30 23:07:17 -07:00
parent fad2e0080c
commit 52fefd5766

View file

@ -132,7 +132,7 @@ namespace MatterHackers.MatterControl
}
}
public void LoadGCode(string filePath, ReportProgressRatio progressReporter)
public void LoadGCode(string filePath, ReportProgressRatio<(double,string)> progressReporter)
{
this.LoadedGCode = GCodeMemoryFile.Load(filePath, progressReporter);
this.GCodeRenderer = new GCodeRenderer(loadedGCode);