Got the new printer setup wizards back to working.

This commit is contained in:
Lars Brubaker 2016-06-07 14:27:37 -07:00
parent 6f0397d197
commit 275b320425
5 changed files with 22 additions and 6 deletions

View file

@ -83,8 +83,11 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
bool canContinue = this.OnSave();
if (canContinue)
{
wizardWindow.ChangeToSetupBaudRate();
//UiThread.RunOnIdle(connectionWizard.Close);
#if __ANDROID__
wizardWindow.ChangeToConnectForm();
#else
wizardWindow.ChangeToInstallDriver();
#endif
}
};