Fixing tests

cleaning up ui
This commit is contained in:
Lars Brubaker 2020-12-31 09:33:43 -08:00
parent 21fe9ab2a6
commit d882f04b07
3 changed files with 26 additions and 6 deletions

View file

@ -139,7 +139,7 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
}
});
var printerNotListedButton = theme.CreateDialogButton("Custom Printer".Localize());
var printerNotListedButton = theme.CreateDialogButton("Unavailable".Localize());
printerNotListedButton.ToolTipText = "Select this option only if your printer does not appear in the list".Localize();
printerNotListedButton.Click += async (s, e) =>
@ -157,8 +157,8 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
});
};
this.AddPageAction(printerNotListedButton, false);
this.AddPageAction(nextButton);
this.AddPageAction(printerNotListedButton);
SetElementVisibility();
}