From 58ba5a5cc1b877876fb77037b983df46c2828806 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 13 Oct 2020 10:17:33 +0100 Subject: [PATCH] Add some more syntax examples. Fixes https://gitlab.com/kicad/code/kicad/issues/5963 --- pcbnew/dialogs/panel_setup_rules_help.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pcbnew/dialogs/panel_setup_rules_help.md b/pcbnew/dialogs/panel_setup_rules_help.md index 58bd81956c..5ef7d350e3 100644 --- a/pcbnew/dialogs/panel_setup_rules_help.md +++ b/pcbnew/dialogs/panel_setup_rules_help.md @@ -82,6 +82,11 @@ (condition "A.NetClass == 'HV' && !A.insideArea('Shield*'))) + # prevent silk over tented vias + (rule silk_over_via + (constraint silk_clearance (min 0.2mm)) + (condition "A.Type == '*Text' && B.Type == 'Via'")) + ### Notes Version clause must be the first clause.