Don't return a value from ConditionallyCancelPrint (it was not used and is confusing)

issue: MatterHackers/MCCentral#1303
Review value of canceled response bool
This commit is contained in:
Lars Brubaker 2018-09-24 11:09:56 -07:00
parent e4d7e5d68c
commit 238491ef8f
3 changed files with 4 additions and 12 deletions

View file

@ -96,7 +96,7 @@ namespace MatterHackers.MatterControl.ActionBar
cancelConnectButton.Click += (s, e) => UiThread.RunOnIdle(() =>
{
listenForConnectFailed = false;
ApplicationController.Instance.ConditionalCancelPrint();
ApplicationController.Instance.ConditionallyCancelPrint();
cancelConnectButton.Enabled = false;
});
this.AddChild(cancelConnectButton);