From 33da35db040abf7333690af66ee422c3525909f0 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 30 Sep 2023 12:39:44 +0100 Subject: [PATCH] Fix typo in arguments list to EvalRules(). Also fixes a bug where we weren't clearing the previous tabs from the notebook. (cherry picked from commit 31e30a5f5693bebcdf9e0006c199070d577f46c8) --- pcbnew/tools/board_inspection_tool.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pcbnew/tools/board_inspection_tool.cpp b/pcbnew/tools/board_inspection_tool.cpp index 86e8048f0a..161432b116 100644 --- a/pcbnew/tools/board_inspection_tool.cpp +++ b/pcbnew/tools/board_inspection_tool.cpp @@ -250,6 +250,8 @@ void BOARD_INSPECTION_TOOL::InspectDRCError( const std::shared_ptr& aDR nullptr, this ); } + m_inspectClearanceDialog->DeleteAllPages(); + WX_HTML_REPORT_BOX* r = nullptr; bool compileError = false; DRC_ENGINE drcEngine = makeDRCEngine( &compileError ); @@ -503,7 +505,7 @@ void BOARD_INSPECTION_TOOL::InspectDRCError( const std::shared_ptr& aDR } else { - constraint = drcEngine.EvalRules( CLEARANCE_CONSTRAINT, a, a, layer, r ); + constraint = drcEngine.EvalRules( CLEARANCE_CONSTRAINT, a, b, layer, r ); clearance = constraint.m_Value.Min(); clearanceStr = m_frame->StringFromValue( clearance, true );