This commit is contained in:
John Lewin 2018-05-23 18:24:19 -07:00
parent 3bbf8e02c1
commit f66f160655
3 changed files with 4 additions and 4 deletions

View file

@ -266,7 +266,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
+ $"{done3}";
}
yield return new LastPagelInstructions(
yield return new LastPageInstructions(
this,
"Done".Localize(),
doneString,

View file

@ -35,11 +35,11 @@ using MatterHackers.MatterControl.SlicerConfiguration;
namespace MatterHackers.MatterControl.ConfigurationPage.PrintLeveling
{
public class LastPagelInstructions : LevelingWizardPage
public class LastPageInstructions : LevelingWizardPage
{
private List<ProbePosition> probePositions;
public LastPagelInstructions(LevelingWizardContext context, string pageDescription, string instructionsText, List<ProbePosition> probePositions)
public LastPageInstructions(LevelingWizardContext context, string pageDescription, string instructionsText, List<ProbePosition> probePositions)
: base(context, pageDescription, instructionsText)
{
this.probePositions = probePositions;