Switch footprint-locked-can't-remove msg to warning.

Fixes: lp:1689898
* https://bugs.launchpad.net/kicad/+bug/1689898
This commit is contained in:
Jeff Young 2018-05-20 15:57:52 +01:00
parent 62a5ee8c21
commit 052ca08546
2 changed files with 2 additions and 2 deletions

View File

@ -551,7 +551,7 @@ bool BOARD_NETLIST_UPDATER::deleteUnusedComponents( NETLIST& aNetlist )
{ {
msg.Printf( _( "Footprint %s is locked, skipping removal.\n" ), msg.Printf( _( "Footprint %s is locked, skipping removal.\n" ),
GetChars( module->GetReference() ) ); GetChars( module->GetReference() ) );
m_reporter->Report( msg, REPORTER::RPT_INFO ); m_reporter->Report( msg, REPORTER::RPT_WARNING );
continue; continue;
} }

View File

@ -322,7 +322,7 @@ DIALOG_TRACK_VIA_PROPERTIES::DIALOG_TRACK_VIA_PROPERTIES( PCB_BASE_FRAME* aParen
m_StdButtonsOK->SetDefault(); m_StdButtonsOK->SetDefault();
Layout(); Layout();
// Pressing ENTER when any of the text input fields is active applies changes // Pressing ENTER when any of the text input fields is active applies changes
Connect( wxEVT_TEXT_ENTER, wxCommandEventHandler( DIALOG_TRACK_VIA_PROPERTIES::onOkClick ), Connect( wxEVT_TEXT_ENTER, wxCommandEventHandler( DIALOG_TRACK_VIA_PROPERTIES::onOkClick ),
NULL, this ); NULL, this );