ssg: wizard: fix ConfigPanelId definitions
This commit is contained in:
parent
6f7c5cb34c
commit
25a29272df
|
@ -28,7 +28,11 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
WPCreate = 29,
|
WPCreate = 29,
|
||||||
SharePointBasicInfo = 32,
|
SharePointBasicInfo = 32,
|
||||||
OtherBasicInfo = 33,
|
OtherBasicInfo = 33,
|
||||||
StaticSiteConfig = 34,
|
StaticSiteConfigInitial = 34,
|
||||||
|
StaticSiteConfigCapabilities = 35,
|
||||||
|
StaticSiteConfigPaths1 = 36,
|
||||||
|
StaticSiteConfigPaths2 = 37,
|
||||||
|
StaticSiteConfigCommands = 38,
|
||||||
SelectProvider = 40,
|
SelectProvider = 40,
|
||||||
SharePointAuth = 41,
|
SharePointAuth = 41,
|
||||||
GoogleBloggerAuth = 42,
|
GoogleBloggerAuth = 42,
|
||||||
|
|
|
@ -73,7 +73,7 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
|
|
||||||
public override ConfigPanelId? PanelId
|
public override ConfigPanelId? PanelId
|
||||||
{
|
{
|
||||||
get { return ConfigPanelId.StaticSiteConfig; }
|
get { return ConfigPanelId.StaticSiteConfigInitial; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public string LocalSitePath
|
public string LocalSitePath
|
||||||
|
|
|
@ -87,7 +87,7 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
|
|
||||||
public override ConfigPanelId? PanelId
|
public override ConfigPanelId? PanelId
|
||||||
{
|
{
|
||||||
get { return ConfigPanelId.StaticSiteConfig; }
|
get { return ConfigPanelId.StaticSiteConfigPaths1; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public string SiteUrl
|
public string SiteUrl
|
||||||
|
|
|
@ -85,7 +85,7 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
||||||
|
|
||||||
public override ConfigPanelId? PanelId
|
public override ConfigPanelId? PanelId
|
||||||
{
|
{
|
||||||
get { return ConfigPanelId.StaticSiteConfig; }
|
get { return ConfigPanelId.StaticSiteConfigPaths2; }
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool _imagesEnabled = false;
|
private bool _imagesEnabled = false;
|
||||||
|
|
Loading…
Reference in New Issue