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:
@@ -126,9 +126,9 @@ namespace RomRepoMgr.ViewModels
|
||||
public string CloseLabel => Localization.CloseLabel;
|
||||
public ReactiveCommand<Unit, Unit> CloseCommand { get; }
|
||||
|
||||
void OnWorkerOnWorkFinished(object sender, EventArgs args) => Dispatcher.UIThread.Post(() =>
|
||||
void OnWorkerOnWorkFinished(object sender, MessageEventArgs args) => Dispatcher.UIThread.Post(() =>
|
||||
{
|
||||
StatusMessage = Localization.Finished;
|
||||
StatusMessage = args.Message;
|
||||
ProgressVisible = false;
|
||||
CanClose = true;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user