Both the controller and postPropertiesForm needs to know that changes have been saved.

This commit is contained in:
jannavarro 2015-12-28 19:27:32 +08:00
parent 7cacaeaca1
commit 9440fd7245
1 changed files with 1 additions and 0 deletions

View File

@ -294,6 +294,7 @@ namespace OpenLiveWriter.PostEditor.PostPropertyEditing
public void SaveChanges(BlogPost post, BlogPostSaveOptions options)
{
controller.SaveChanges(post, options);
((IBlogPostEditor)postPropertiesForm).SaveChanges(post, options);
}