Treat %R and %V texts like Reference and Value for plotting.

Fixes: lp:1677321
* https://bugs.launchpad.net/kicad/+bug/1677321
This commit is contained in:
Jeff Young 2018-02-10 20:47:19 +00:00 committed by Wayne Stambaugh
parent 916f79d5a1
commit 2b0f789b85
1 changed files with 6 additions and 0 deletions

View File

@ -267,6 +267,12 @@ bool BRDITEMS_PLOTTER::PlotAllTextsModule( MODULE* aModule )
if( !m_layerMask[textLayer] )
continue;
if( textModule->GetText() == wxT( "%R" ) && !trace_ref )
continue;
if( textModule->GetText() == wxT( "%V" ) && !trace_val )
continue;
PlotTextModule( textModule, getColor( textLayer ) );
}