Rename themeset.ThemeID property to ThemesetID
This commit is contained in:
parent
83eef23d17
commit
fffaa15598
3 changed files with 11 additions and 7 deletions
|
|
@ -98,7 +98,7 @@ namespace MatterHackers.MatterControl
|
|||
|
||||
// Set SchemaVersion at construction time
|
||||
themeset.SchemeVersion = ThemeSet.LatestSchemeVersion;
|
||||
themeset.ThemeID = themeName;
|
||||
themeset.ThemesetID = themeName;
|
||||
|
||||
return themeset;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue