Refresh view after import succeeds

This commit is contained in:
Dean Herbert 2020-12-15 12:52:45 +09:00
parent cafe81ab97
commit db4f2d5ffb
1 changed files with 10 additions and 9 deletions

View File

@ -154,16 +154,17 @@ private void startImport(string path)
if (string.IsNullOrEmpty(path))
return;
if (!File.Exists(path))
{
currentFileText.Text = "No such file";
currentFileText.FlashColour(colours.Red, duration);
return;
}
Task.Factory.StartNew(async () => await game.Import(path), TaskCreationOptions.LongRunning)
.ContinueWith(_ =>
{
// some files will be deleted after successful import, so we want to refresh the view.
string[] paths = { path };
Task.Factory.StartNew(() => game.Import(paths), TaskCreationOptions.LongRunning);
Schedule(() =>
{
// should probably be exposed as a refresh method.
fileSelector.CurrentPath.TriggerChange();
});
});
}
}
}