Fixed a bug in getting extruder temps
Made temperature a settings key MatterHackers/MCCentral#553 Extruder and bed not being heated before printing
This commit is contained in:
parent
74c9ea25f2
commit
eccc9a2a81
7 changed files with 51 additions and 41 deletions
|
|
@ -80,7 +80,7 @@ namespace MatterHackers.MatterControl.ActionBar
|
|||
protected override void SetTargetTemperature()
|
||||
{
|
||||
double targetTemp;
|
||||
if (double.TryParse(ActiveSliceSettings.Instance.GetValue("temperature"), out targetTemp))
|
||||
if (double.TryParse(ActiveSliceSettings.Instance.GetValue(SettingsKey.temperature), out targetTemp))
|
||||
{
|
||||
double goalTemp = (int)(targetTemp + .5);
|
||||
if (PrinterConnectionAndCommunication.Instance.PrinterIsPrinting
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue