Browse Source

Add undefined netclass to severities list.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20373
pull/18/head
Jeff Young 4 months ago
parent
commit
5d3279004f
  1. 1
      eeschema/erc/erc_item.cpp
  2. 3
      eeschema/erc/erc_settings.h

1
eeschema/erc/erc_item.cpp

@ -265,6 +265,7 @@ std::vector<std::reference_wrapper<RC_ITEM>> ERC_ITEM::allItemTypes(
ERC_ITEM::heading_misc,
ERC_ITEM::unannotated,
ERC_ITEM::unresolvedVariable,
ERC_ITEM::undefinedNetclass,
ERC_ITEM::simulationModelIssues,
ERC_ITEM::similarLabels,
ERC_ITEM::similarPower,

3
eeschema/erc/erc_settings.h

@ -88,11 +88,8 @@ enum ERCE_T
ERCE_LABEL_MULTIPLE_WIRES, ///< A label is connected to more than one wire.
ERCE_UNCONNECTED_WIRE_ENDPOINT, ///< A label is connected to more than one wire.
ERCE_LAST = ERCE_UNCONNECTED_WIRE_ENDPOINT,
// Errors after this point will not automatically appear in the Severities Panel
ERCE_DUPLICATE_PIN_ERROR,
ERCE_PIN_TO_PIN_WARNING, // pin connected to an other pin: warning level
ERCE_PIN_TO_PIN_ERROR, // pin connected to an other pin: error level

Loading…
Cancel
Save