Reorder columns in progress display for media dump command.

This commit is contained in:
2025-12-31 17:24:12 +00:00
parent a8ff8d36f2
commit 514d1f0b25

View File

@@ -533,7 +533,7 @@ sealed class DumpMediaCommand : Command<DumpMediaCommand.Settings>
AnsiConsole.Progress()
.AutoClear(true)
.HideCompleted(true)
.Columns(new TaskDescriptionColumn(), new ProgressBarColumn(), new PercentageColumn())
.Columns(new ProgressBarColumn(), new PercentageColumn(), new TaskDescriptionColumn())
.Start(ctx =>
{
dumper.UpdateStatus += static text => { AaruLogging.WriteLine(text); };