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:
parent
145cd47d5c
commit
b521c91a6b
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue