diff --git a/MatterControlLib/ApplicationView/ApplicationController.cs b/MatterControlLib/ApplicationView/ApplicationController.cs index c93489d36..92730a69d 100644 --- a/MatterControlLib/ApplicationView/ApplicationController.cs +++ b/MatterControlLib/ApplicationView/ApplicationController.cs @@ -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) => { diff --git a/MatterControlLib/SetupWizard/CopyGuestProfilesToUser.cs b/MatterControlLib/SetupWizard/CopyGuestProfilesToUser.cs index bc7696970..d879bad17 100644 --- a/MatterControlLib/SetupWizard/CopyGuestProfilesToUser.cs +++ b/MatterControlLib/SetupWizard/CopyGuestProfilesToUser.cs @@ -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;