Skip to content

Commit

Permalink
fixup! Library: improve logged scan summary, also log new and missing…
Browse files Browse the repository at this point in the history
… tracks
  • Loading branch information
ronso0 committed Jan 13, 2025
1 parent cff8369 commit 6b52eca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mixxxmainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,8 @@ void MixxxMainWindow::slotLibraryScanSummaryDlg(const LibraryScanResultSummary&
}
if (result.numRediscoveredTracks != 0) {
summary += QStringLiteral("<br>") +
tr("%1 tracks have been rediscovered").arg(QString::number(result.numRediscoveredTracks));
tr("%1 tracks have been rediscovered")
.arg(QString::number(result.numRediscoveredTracks));
}
summary += QStringLiteral("<br><br><b>") +
tr("%1 tracks in total").arg(QString::number(result.tracksTotal)) +
Expand Down

0 comments on commit 6b52eca

Please sign in to comment.