Clearer message for exchange footprint failure

This commit is contained in:
Maciej Suminski 2017-08-17 16:53:49 +02:00
parent d25fdfdb89
commit 077fb3c294
1 changed files with 2 additions and 2 deletions

View File

@ -319,7 +319,7 @@ bool DIALOG_EXCHANGE_MODULE::change_1_Module( MODULE* aModule,
if( newModule == NULL ) // New module not found, redraw the old one.
{
m_WinMessages->AppendText( wxT( " No\n" ) );
m_WinMessages->AppendText( wxT( ": footprint not found\n" ) );
return false;
}
@ -328,7 +328,7 @@ bool DIALOG_EXCHANGE_MODULE::change_1_Module( MODULE* aModule,
if( aModule == m_currentModule )
m_currentModule = newModule;
m_WinMessages->AppendText( wxT( " OK\n" ) );
m_WinMessages->AppendText( wxT( ": OK\n" ) );
return true;
}