Fixed order of AD1 decoded files + fixed notification + added running status to UI.

This commit is contained in:
Patrick Fic
2020-01-22 14:44:33 -08:00
parent 99cf3efaf1
commit fcdb44d730
5 changed files with 55 additions and 50 deletions

View File

@@ -48,12 +48,14 @@ namespace BodyshopUploader.Models
logger.Debug("Starting folder monitor for path {0}", FilePath);
System.IO.Directory.CreateDirectory(FilePath);
FolderMonitor = new Utils.CIECAMonitor(FilePath);
OnPropertyChanged( nameof(FolderMonitor));
}
public void StopMonitor()
{
logger.Debug("Stopping folder monitor for path {0}", FilePath);
FolderMonitor?.Dispose();
OnPropertyChanged(nameof(FolderMonitor));
}
}
}