Prevent error message when backpropagating

Need to allow only processing other fields

Fixes https://gitlab.com/kicad/code/kicad/issues/21467
This commit is contained in:
Seth Hillbrand 2025-08-12 08:09:45 -07:00
parent 899cf0bebc
commit 8a081f60b1

View File

@ -71,7 +71,7 @@ bool BACK_ANNOTATE::BackAnnotateSymbols( const std::string& aNetlist )
m_changesCount = 0; m_changesCount = 0;
if( !m_matchByReference && !m_processValues && !m_processFootprints && !m_processReferences if( !m_matchByReference && !m_processValues && !m_processFootprints && !m_processReferences
&& !m_processNetNames && !m_processAttributes ) && !m_processNetNames && !m_processAttributes && !m_processOtherFields )
{ {
m_reporter.ReportTail( _( "Select at least one property to back annotate." ), m_reporter.ReportTail( _( "Select at least one property to back annotate." ),
RPT_SEVERITY_ERROR ); RPT_SEVERITY_ERROR );