Mention rule priority system in Syntax Help and Clearance Report.

Fixes https://gitlab.com/kicad/code/kicad/issues/5647
This commit is contained in:
Jeff Young 2020-09-21 10:45:54 +01:00
parent 865249c227
commit 1b77c4c270
2 changed files with 6 additions and 2 deletions

View File

@ -49,7 +49,11 @@ pad hole graphic text zone
# ---- Notes
#
# Version clause must be first clause in file.
# Version clause must be the first clause.
#
# Rules should be ordered by specificity. Later rules take
# precedence over earlier rules; once a matching rule is found
# no further rules will be checked.
#
# Use Ctrl+/ to comment or uncomment line(s).
#

View File

@ -537,7 +537,7 @@ DRC_CONSTRAINT DRC_ENGINE::EvalRulesForItems( DRC_CONSTRAINT_TYPE_T aConstraintI
if( rcons->condition->EvaluateFor( a, b, aLayer, aReporter ) )
{
REPORT( implicit ? _( "Constraint applicable." )
: _( "Rule applied." ) )
: _( "Rule applied. (No further rules will be checked.)" ) )
constraintRef = &rcons->constraint;
break;