fixing warnings

This commit is contained in:
Lars Brubaker 2019-05-16 16:16:10 -07:00
parent 554af7aaa6
commit d8695c618e
2 changed files with 5 additions and 4 deletions

View file

@ -74,15 +74,14 @@ namespace MatterHackers.PrinterEmulator
}
}
// Try catch this so that if the program exits while this thread is active we don't throw
// This fixes the DualExtrusionShowsCorrectHotendData test
try
// Try catch this so that if the program exits while this thread is active we don't throw
// This fixes the DualExtrusionShowsCorrectHotendData test
try
{
Thread.Sleep(loopTimeInMs);
}
catch
{
}
}
});

View file

@ -67,7 +67,9 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
};
public bool HeatingBed { get { return state == State.WaitingForBedTemp; } }
public bool HeatingT0 { get { return state == State.WaitingForT0Temp; } }
public bool HeatingT1 { get { return state == State.WaitingForT1Temp; } }
public override string DebugInfo => "";