diff --git a/LarkatorGUI/MainWindow.xaml.cs b/LarkatorGUI/MainWindow.xaml.cs index 6f433d4..4bb0689 100644 --- a/LarkatorGUI/MainWindow.xaml.cs +++ b/LarkatorGUI/MainWindow.xaml.cs @@ -226,6 +226,7 @@ private void SetupFileWatcher() if (fileWatcher != null) fileWatcher.EnableRaisingEvents = false; fileWatcher = new FileSystemWatcher(Path.GetDirectoryName(Properties.Settings.Default.SaveFile)); fileWatcher.Renamed += FileWatcher_Changed; + fileWatcher.Changed += FileWatcher_Changed; fileWatcher.EnableRaisingEvents = true; reloadTimer.Interval = TimeSpan.FromMilliseconds(Properties.Settings.Default.ConvertDelay); reloadTimer.Tick += ReloadTimer_Tick;