fixing timing problem with test

This commit is contained in:
LarsBrubaker 2020-05-17 15:29:35 -07:00
parent ab7f2dc492
commit 49b4038b21
2 changed files with 8 additions and 4 deletions

View file

@ -3199,8 +3199,8 @@ namespace MatterHackers.MatterControl
string markdownText = @"**Find more at MatterHackers**
Supplies and accessories:
- [Filament](https://www.matterhackers.com/store/c/3d-printer-filament)
- [Bed Adhesives](https://www.matterhackers.com/store/c/3d-printer-adhesive)
- [Filament](https://www.matterhackers.com/store/c/3d-printer-filament)
- [Bed Adhesives](https://www.matterhackers.com/store/c/3d-printer-adhesive)
- [Digital Designs](https://www.matterhackers.com/store/c/digital-designs)
Support and tutorials:
@ -3243,7 +3243,7 @@ Support and tutorials:
TextColor = AppContext.Theme.TextColor,
Margin = new BorderDouble(top: 6, left: 6),
HAnchor = Agg.UI.HAnchor.Left,
Checked = UserSettings.Instance.get(userKey) == "false"
Checked = UserSettings.Instance.get(userKey) == "false",
};
hideAfterPrintMessage.Click += (s, e1) =>
{

View file

@ -138,7 +138,11 @@ namespace MatterHackers.MatterControl
this.AcceptButton = copyButton;
this.AddPageAction(copyButton);
rememberChoice = new CheckBox("Don't remind me again".Localize(), theme.TextColor);
rememberChoice = new CheckBox("Don't remind me again".Localize(), theme.TextColor)
{
Name = "Don't remind me again"
};
contentRow.AddChild(rememberChoice);
copyButton.Visible = true;