Sort models by processing time

This commit is contained in:
Beingpax 2025-08-04 18:06:31 +05:45
parent 4ce7c7d942
commit 3cf8f33161

View File

@ -205,7 +205,7 @@ struct PerformanceAnalysisView: View {
avgAudioDuration: avgAudioDuration,
speedFactor: speedFactor
)
}.sorted { $0.name < $1.name }
}.sorted { $0.avgProcessingTime < $1.avgProcessingTime }
}
}