@JeffYoung Not sure if this is a bug.
I have a custom designed rule to avoid vias to be covered by silkscreen:
#make sure silkscreen text does not overlap vias
(rule silk2via
(severity warning)
(constraint silk_clearance (min 0.15mm))
(condition "(A.Type=='Via')&&((B.Type=='Graphic')||(B.Type=='Text'))&&(!A.insideArea('silk_ok'))")
)
Fails here:
Works here:
Bug in KiCad or in my rule?