mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
Emit message on successful dat import.
This commit is contained in:
@@ -305,12 +305,12 @@ namespace RomRepoMgr.ViewModels
|
||||
Task.Run(_worker.Import);
|
||||
}
|
||||
|
||||
void OnWorkerOnWorkFinished(object sender, EventArgs args) => Dispatcher.UIThread.Post(() =>
|
||||
void OnWorkerOnWorkFinished(object sender, MessageEventArgs args) => Dispatcher.UIThread.Post(() =>
|
||||
{
|
||||
ImportResults.Add(new ImportDatFolderItem
|
||||
{
|
||||
Filename = Path.GetFileName(_datFiles[_listPosition]),
|
||||
Status = Localization.OK
|
||||
Status = args.Message
|
||||
});
|
||||
|
||||
_listPosition++;
|
||||
|
||||
Reference in New Issue
Block a user