update Export.axaml and Export.axaml.cs

This commit is contained in:
Alex
2025-08-30 18:29:47 -07:00
parent 6138c693bf
commit 11a9af5778
2 changed files with 8 additions and 2 deletions
+5 -1
View File
@@ -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);
}