7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-18 23:21:41 +00:00

Fix failure to increment job number.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20034
This commit is contained in:
Jeff Young 2025-03-13 16:37:09 +00:00
parent e48a2b5ee4
commit 2304d10879

View File

@ -247,7 +247,10 @@ bool JOBS_RUNNER::RunJobsForDestination( JOBSET_DESTINATION* aDestination, bool
if( m_reporter != nullptr )
{
msg = wxT( "|--------------------------------\n" );
msg += wxString::Format( wxT( "| Running job %d, %s" ), jobNum, job.GetDescription() );
jobNum++;
msg += wxT( "\n" );
msg += wxT( "|--------------------------------\n" );