From d192d3c31d669166be675b78948deea3dd19b703 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Mon, 25 Apr 2022 09:39:00 +0100 Subject: [PATCH] Better violation title for disabled layers check. Fixes https://gitlab.com/kicad/code/kicad/issues/11451 --- pcbnew/board_design_settings.cpp | 1 + pcbnew/drc/drc_item.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/board_design_settings.cpp b/pcbnew/board_design_settings.cpp index 0797f749e6..7ea08417b1 100644 --- a/pcbnew/board_design_settings.cpp +++ b/pcbnew/board_design_settings.cpp @@ -171,6 +171,7 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std: m_DRCSeverities[ DRCE_ISOLATED_COPPER ] = RPT_SEVERITY_WARNING; m_DRCSeverities[ DRCE_PADSTACK ] = RPT_SEVERITY_WARNING; + m_DRCSeverities[ DRCE_OVERLAPPING_PADS ] = RPT_SEVERITY_WARNING; m_DRCSeverities[ DRCE_MISSING_FOOTPRINT ] = RPT_SEVERITY_WARNING; m_DRCSeverities[ DRCE_DUPLICATE_FOOTPRINT ] = RPT_SEVERITY_WARNING; diff --git a/pcbnew/drc/drc_item.cpp b/pcbnew/drc/drc_item.cpp index a073724c21..9838a0e83c 100644 --- a/pcbnew/drc/drc_item.cpp +++ b/pcbnew/drc/drc_item.cpp @@ -153,7 +153,7 @@ DRC_ITEM DRC_ITEM::npthInsideCourtyard( DRCE_NPTH_IN_COURTYARD, wxT( "npth_inside_courtyard" ) ); DRC_ITEM DRC_ITEM::itemOnDisabledLayer( DRCE_DISABLED_LAYER_ITEM, - _( "Item on a disabled layer" ), + _( "Item on a disabled copper layer" ), wxT( "item_on_disabled_layer" ) ); DRC_ITEM DRC_ITEM::invalidOutline( DRCE_INVALID_OUTLINE,