From 13c63e3a50c308f61e0ceba843e4724d68a2c74e Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 26 Nov 2020 19:29:50 +0000 Subject: [PATCH] Clearer warning about not back-annotating footprint deletes. Fixes https://gitlab.com/kicad/code/kicad/issues/6521 --- eeschema/tools/backannotate.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eeschema/tools/backannotate.cpp b/eeschema/tools/backannotate.cpp index 2652101c02..357c328842 100644 --- a/eeschema/tools/backannotate.cpp +++ b/eeschema/tools/backannotate.cpp @@ -285,9 +285,11 @@ void BACK_ANNOTATE::checkForUnusedSymbols() if( ref.GetSymbol()->GetIncludeOnBoard() ) { - wxString msg = wxString::Format( _( "Cannot find footprint for symbol '%s'." ), + wxString msg = wxString::Format( _( "Footprint '%s' is not present on PCB. " + "Corresponding symbols in schematic must be " + "manually deleted (if desired)." ), m_refs[i++].GetFullRef() ); - m_reporter.ReportTail( msg, RPT_SEVERITY_ERROR ); + m_reporter.ReportTail( msg, RPT_SEVERITY_WARNING ); } }