Display "Finished" message for eeschema ERC

pcbnew DRC displays this as well; a user pointed out that when there are no
errors, it can be hard to tell that ERC ran at all.
This commit is contained in:
Chris Pavlina 2016-03-11 19:23:44 -05:00
parent 145cd47d5c
commit b521c91a6b
1 changed files with 5 additions and 0 deletions

View File

@ -567,6 +567,11 @@ void DIALOG_ERC::TestErc( wxArrayString* aMessagesList )
// Display new markers:
m_parent->GetCanvas()->Refresh();
// Display message
wxString msg = _( "Finished" );
msg += wxT( "\n" );
aMessagesList->Add( msg );
if( m_writeErcFile )
{
fn = g_RootSheet->GetScreen()->GetFileName();