diff --git a/pcbnew/dialogs/dialog_exchange_modules.cpp b/pcbnew/dialogs/dialog_exchange_modules.cpp index c411ef0084..b82a3ccd97 100644 --- a/pcbnew/dialogs/dialog_exchange_modules.cpp +++ b/pcbnew/dialogs/dialog_exchange_modules.cpp @@ -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; }