JumpList refresh
Ensure that the jump list is refreshed when you hit save based on the new folder location.
This commit is contained in:
parent
bb1b84f549
commit
d38b8fcf3c
|
@ -109,5 +109,9 @@ namespace OpenLiveWriter.PostEditor
|
||||||
PostEditorSettings.WeblogPostsFolder = WeblogPostsFolder;
|
PostEditorSettings.WeblogPostsFolder = WeblogPostsFolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SaveWebLogPostFolder()
|
||||||
|
{
|
||||||
|
PostEditorSettings.WeblogPostsFolder = WeblogPostsFolder;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -161,6 +161,8 @@ namespace OpenLiveWriter.PostEditor
|
||||||
Directory.CreateDirectory(destinationRecentPosts);
|
Directory.CreateDirectory(destinationRecentPosts);
|
||||||
Directory.CreateDirectory(destinationDrafts);
|
Directory.CreateDirectory(destinationDrafts);
|
||||||
|
|
||||||
|
_postEditorPreferences.SaveWebLogPostFolder();
|
||||||
|
|
||||||
if (string.Compare(_originalFolder, _postEditorPreferences.WeblogPostsFolder, true, CultureInfo.CurrentUICulture) != 0)
|
if (string.Compare(_originalFolder, _postEditorPreferences.WeblogPostsFolder, true, CultureInfo.CurrentUICulture) != 0)
|
||||||
{
|
{
|
||||||
string message = "You have updated the default location for your blog posts, would you like to move any existing posts?";
|
string message = "You have updated the default location for your blog posts, would you like to move any existing posts?";
|
||||||
|
@ -186,8 +188,6 @@ namespace OpenLiveWriter.PostEditor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_postEditorPreferences.Changed();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_postEditorPreferences.IsModified())
|
if (_postEditorPreferences.IsModified())
|
||||||
|
@ -196,8 +196,6 @@ namespace OpenLiveWriter.PostEditor
|
||||||
if (_wordCountPreferences.IsModified())
|
if (_wordCountPreferences.IsModified())
|
||||||
_wordCountPreferences.Save();
|
_wordCountPreferences.Save();
|
||||||
|
|
||||||
PostListCache.Update();
|
|
||||||
|
|
||||||
_originalFolder = _postEditorPreferences.WeblogPostsFolder;
|
_originalFolder = _postEditorPreferences.WeblogPostsFolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue