Got pause, resume and cancel gcode into the settings and working in printer communication.

This commit is contained in:
larsbrubaker 2014-03-17 14:41:36 -07:00
parent 24129ae8be
commit 7f8300bafc
17 changed files with 597 additions and 995 deletions

View file

@ -87,7 +87,7 @@ namespace MatterHackers.MatterControl
protected void ReloadMacros(object sender, EventArgs e)
{
MainSlidePanel.Instance.ReloadBackPanel();
ApplicationWidget.Instance.ReloadBackPanel();
}

View file

@ -135,7 +135,7 @@ namespace MatterHackers.MatterControl
{
ActivePrinterProfile.Instance.ActivePrinter.ManualMovementSpeeds = stringEvent.Data;
ActivePrinterProfile.Instance.ActivePrinter.Commit();
MainSlidePanel.Instance.ReloadBackPanel();
ApplicationWidget.Instance.ReloadBackPanel();
}
}

View file

@ -457,7 +457,7 @@ namespace MatterHackers.MatterControl
if (stringEvent != null && stringEvent.Data != null)
{
UserSettings.Instance.set("Extruder1PresetTemps", stringEvent.Data);
MainSlidePanel.Instance.ReloadBackPanel();
ApplicationWidget.Instance.ReloadBackPanel();
}
}
@ -546,7 +546,7 @@ namespace MatterHackers.MatterControl
if (stringEvent != null && stringEvent.Data != null)
{
UserSettings.Instance.set("BedPresetTemps", stringEvent.Data);
MainSlidePanel.Instance.ReloadBackPanel();
ApplicationWidget.Instance.ReloadBackPanel();
}
}