fixing timing problem with test
This commit is contained in:
parent
ab7f2dc492
commit
49b4038b21
2 changed files with 8 additions and 4 deletions
|
|
@ -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) =>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue