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 31e30a5f56
)
This commit is contained in:
parent
533be1ec70
commit
33da35db04
|
@ -250,6 +250,8 @@ void BOARD_INSPECTION_TOOL::InspectDRCError( const std::shared_ptr<RC_ITEM>& 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<RC_ITEM>& 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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue