Change AnyPrintTaskRunning to be true while PreparingToPrint
- Issue MatterHackers/MCCentral#4789 Do not allow sign in/out while printing
This commit is contained in:
parent
2c089891e6
commit
76be3140fe
1 changed files with 1 additions and 1 deletions
|
|
@ -2195,7 +2195,7 @@ namespace MatterHackers.MatterControl
|
|||
/// <summary>
|
||||
/// Indicates if any ActivePrinter is running a print task, either in paused or printing states
|
||||
/// </summary>
|
||||
public bool AnyPrintTaskRunning => this.ActivePrinters.Any(p => p.Connection.PrinterIsPrinting || p.Connection.PrinterIsPaused);
|
||||
public bool AnyPrintTaskRunning => this.ActivePrinters.Any(p => p.Connection.PrinterIsPrinting || p.Connection.PrinterIsPaused || p.Connection.CommunicationState == CommunicationStates.PreparingToPrint);
|
||||
|
||||
private List<TourLocation> _productTour;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue