diff --git a/pcbnew/dialogs/dialog_gendrill.cpp b/pcbnew/dialogs/dialog_gendrill.cpp index 31996ba6dc..78eceace42 100644 --- a/pcbnew/dialogs/dialog_gendrill.cpp +++ b/pcbnew/dialogs/dialog_gendrill.cpp @@ -474,6 +474,4 @@ void DIALOG_GENDRILL::OnGenReportFile( wxCommandEvent& event ) msg.Printf( _( "Report file '%s' created." ), dlg.GetPath() ); m_messagesBox->AppendText( msg ); } - - m_messagesBox->AppendText( _( "Done." ) ); } diff --git a/pcbnew/exporters/gendrill_Excellon_writer.cpp b/pcbnew/exporters/gendrill_Excellon_writer.cpp index 1fb0d16680..ce0e689af3 100644 --- a/pcbnew/exporters/gendrill_Excellon_writer.cpp +++ b/pcbnew/exporters/gendrill_Excellon_writer.cpp @@ -125,7 +125,7 @@ void EXCELLON_WRITER::CreateDrillandMapFilesSet( const wxString& aPlotDirectory, if( aReporter ) { msg.Printf( _( "Created file '%s'" ), fullFilename ); - aReporter->Report( msg, RPT_SEVERITY_INFO ); + aReporter->Report( msg, RPT_SEVERITY_ACTION ); } } @@ -148,6 +148,8 @@ void EXCELLON_WRITER::CreateDrillandMapFilesSet( const wxString& aPlotDirectory, if( aGenMap ) CreateMapFilesSet( aPlotDirectory, aReporter ); + + aReporter->ReportTail( _( "Done." ), RPT_SEVERITY_INFO ); } diff --git a/pcbnew/exporters/gendrill_file_writer_base.cpp b/pcbnew/exporters/gendrill_file_writer_base.cpp index 55d5266224..d50b13135d 100644 --- a/pcbnew/exporters/gendrill_file_writer_base.cpp +++ b/pcbnew/exporters/gendrill_file_writer_base.cpp @@ -352,7 +352,7 @@ void GENDRILL_WRITER_BASE::CreateMapFilesSet( const wxString& aPlotDirectory, if( aReporter ) { msg.Printf( _( "Created file '%s'." ), fullfilename ); - aReporter->Report( msg, RPT_SEVERITY_INFO ); + aReporter->Report( msg, RPT_SEVERITY_ACTION ); } } } diff --git a/pcbnew/exporters/gendrill_gerber_writer.cpp b/pcbnew/exporters/gendrill_gerber_writer.cpp index fb81db10b8..24dc190b5a 100644 --- a/pcbnew/exporters/gendrill_gerber_writer.cpp +++ b/pcbnew/exporters/gendrill_gerber_writer.cpp @@ -109,7 +109,7 @@ void GERBER_WRITER::CreateDrillandMapFilesSet( const wxString& aPlotDirectory, b if( aReporter ) { msg.Printf( _( "Created file '%s'." ), fullFilename ); - aReporter->Report( msg, RPT_SEVERITY_INFO ); + aReporter->Report( msg, RPT_SEVERITY_ACTION ); } } @@ -119,6 +119,8 @@ void GERBER_WRITER::CreateDrillandMapFilesSet( const wxString& aPlotDirectory, b if( aGenMap ) CreateMapFilesSet( aPlotDirectory, aReporter ); + + aReporter->ReportTail( _( "Done." ), RPT_SEVERITY_INFO ); }