From 52fefd5766225e3552944c1908e0410e06956f5c Mon Sep 17 00:00:00 2001 From: John Lewin Date: Fri, 30 Jun 2017 23:07:17 -0700 Subject: [PATCH] Update ReportProgressRatio to new signature --- ApplicationView/ApplicationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationView/ApplicationController.cs b/ApplicationView/ApplicationController.cs index fa1ba582b..6b8c35155 100644 --- a/ApplicationView/ApplicationController.cs +++ b/ApplicationView/ApplicationController.cs @@ -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);