Browse Source

Warn for excessive pads

Fixes: lp:1849664
* https://bugs.launchpad.net/kicad/+bug/1849664
merge-requests/1/head
Philipp 6 years ago
committed by Seth Hillbrand
parent
commit
d788a5d99e
  1. 8
      pcbnew/board_netlist_updater.cpp

8
pcbnew/board_netlist_updater.cpp

@ -310,7 +310,13 @@ bool BOARD_NETLIST_UPDATER::updateComponentPadConnections( MODULE* aPcbComponent
pad->GetName() );
m_reporter->Report( msg, REPORTER::RPT_ACTION );
}
else // pad has no net
{
msg.Printf( _( "No net for component %s pin %s." ),
aPcbComponent->GetReference(),
pad->GetName() );
m_reporter->Report( msg, REPORTER::RPT_WARNING);
}
if( !m_isDryRun )
{
changed = true;

Loading…
Cancel
Save