From c18c660767f1018a3f3f0f8eaaf20de092f549cc Mon Sep 17 00:00:00 2001 From: John Lewin Date: Wed, 7 Mar 2018 10:51:58 -0800 Subject: [PATCH] Fix typo --- DesignTools/PublicPropertyEditor.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DesignTools/PublicPropertyEditor.cs b/DesignTools/PublicPropertyEditor.cs index 155dcc9d6..1b545aa6a 100644 --- a/DesignTools/PublicPropertyEditor.cs +++ b/DesignTools/PublicPropertyEditor.cs @@ -452,7 +452,8 @@ namespace MatterHackers.MatterControl.DesignTools && !string.IsNullOrEmpty(unlockLink.DetailsPageLink) && !item.Persistable) { - var row = CreateSettingsRow(item.Persistable ? "Registerd" : "Demo Mode"); + var row = CreateSettingsRow(item.Persistable ? "Registered" : "Demo Mode"); + Button detailsLink = theme.ButtonFactory.Generate("Unlock".Localize(), AggContext.StaticData.LoadIcon("locked.png", 16, 16)); detailsLink.BackgroundColor = theme.Colors.PrimaryAccentColor.AdjustContrast(theme.Colors.PrimaryTextColor, 8).ToColor(); detailsLink.Margin = new BorderDouble(5);