mirror of
https://github.com/muskit/MercuryConverter.git
synced 2026-06-03 04:34:25 -07:00
update Export.axaml and Export.axaml.cs
This commit is contained in:
@@ -199,7 +199,11 @@ public partial class Export : Panel
|
||||
{
|
||||
if (cancelToken.IsCancellationRequested) return;
|
||||
|
||||
await Dispatcher.UIThread.InvokeAsync(() => row.Status = ExportStatus.Working);
|
||||
await Dispatcher.UIThread.InvokeAsync(() =>
|
||||
{
|
||||
row.Status = ExportStatus.Working;
|
||||
ListingTable.ScrollIntoView(row, null);
|
||||
});
|
||||
Exporter.Run(path, row.Song, options);
|
||||
await Dispatcher.UIThread.InvokeAsync(() => row.Status = ExportStatus.Finished);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user