Rename themeset.ThemeID property to ThemesetID

This commit is contained in:
John Lewin 2018-10-30 11:51:32 -07:00
parent 83eef23d17
commit fffaa15598
3 changed files with 11 additions and 7 deletions

View file

@ -98,7 +98,7 @@ namespace MatterHackers.MatterControl
// Set SchemaVersion at construction time
themeset.SchemeVersion = ThemeSet.LatestSchemeVersion;
themeset.ThemeID = themeName;
themeset.ThemesetID = themeName;
return themeset;
}

View file

@ -34,12 +34,16 @@ namespace MatterHackers.MatterControl
{
public class ThemeSet
{
public static int LatestSchemeVersion { get; } = 20181023;
public static int LatestSchemeVersion { get; } = 20181030;
public string ThemeID { get; set; }
public string ThemesetID { get; set; }
public string Name { get; set; }
public string ThemeName { get; set; }
public string MenuThemeName { get; set; }
public ThemeConfig Theme { get; set; }
public ThemeConfig MenuTheme { get; set; }