diff --git a/MarkDownEditor/ViewModel/MainViewModel.cs b/MarkDownEditor/ViewModel/MainViewModel.cs index 8f74371..b3160ca 100644 --- a/MarkDownEditor/ViewModel/MainViewModel.cs +++ b/MarkDownEditor/ViewModel/MainViewModel.cs @@ -192,9 +192,9 @@ public string DocumentPath markdownSourceTempPath = Path.GetDirectoryName(documentPath) + "\\~" + Path.GetRandomFileName() + ".md"; previewSourceTempPath = Path.GetDirectoryName(documentPath) + "\\~" + Path.GetRandomFileName() + ".html"; } - - //RaisePropertyChanged("DocumentSource"); + + RaisePropertyChanged("DocumentSource"); RaisePropertyChanged("PreviewSource"); RaisePropertyChanged("DocumentPath"); }