Rename Connection.PrinterIsConnected -> Connection.IsConnected

This commit is contained in:
John Lewin 2018-02-01 14:51:44 -08:00
parent 028afd98d2
commit e998f137aa
15 changed files with 33 additions and 33 deletions

View file

@ -48,7 +48,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
{
if (!printerConnection.WaitingForPositionRead
&& nextReadTimeMs < UiThread.CurrentTimerMs
&& printerConnection.PrinterIsConnected)
&& printerConnection.IsConnected)
{
nextReadTimeMs = UiThread.CurrentTimerMs + 1000;
return "M105";