BOARD_NETLIST_UPDATER: better warning message (I hope...) in Report.
Fixes #14548 https://gitlab.com/kicad/code/kicad/issues/14548
This commit is contained in:
parent
469fe76994
commit
d0676118c1
|
@ -523,7 +523,8 @@ bool BOARD_NETLIST_UPDATER::updateComponentPadConnections( FOOTPRINT* aFootprint
|
|||
else if( pad->IsOnCopperLayer() && !pad->GetNumber().IsEmpty() )
|
||||
{
|
||||
// pad is connectable but has no net found in netlist
|
||||
msg.Printf( _( "No net found for symbol %s pin %s." ),
|
||||
msg.Printf( _( "No net found for component %s pad %s (no pin %s in symbol)." ),
|
||||
pad->GetNumber(),
|
||||
aFootprint->GetReference(),
|
||||
pad->GetNumber() );
|
||||
m_reporter->Report( msg, RPT_SEVERITY_WARNING);
|
||||
|
|
Loading…
Reference in New Issue