Putting in a macro cancel button.
This commit is contained in:
parent
23b1ced1ea
commit
4c8971f4a7
5 changed files with 44 additions and 3 deletions
|
|
@ -159,6 +159,11 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
|
|||
waitingForUserInput = false;
|
||||
}
|
||||
|
||||
public void Cancel()
|
||||
{
|
||||
Reset();
|
||||
}
|
||||
|
||||
public void Continue()
|
||||
{
|
||||
waitingForUserInput = false;
|
||||
|
|
|
|||
|
|
@ -2964,6 +2964,11 @@ namespace MatterHackers.MatterControl.PrinterCommunication
|
|||
queuedCommandStream2?.Reset();
|
||||
}
|
||||
|
||||
public void MacroCancel()
|
||||
{
|
||||
queuedCommandStream2?.Cancel();
|
||||
}
|
||||
|
||||
public void MacroContinue()
|
||||
{
|
||||
queuedCommandStream2?.Continue();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue