Disentagle board edges from graphics in global delete.

Fixes https://gitlab.com/kicad/code/kicad/issues/7024
This commit is contained in:
Jeff Young 2021-01-09 13:07:40 +00:00
parent df69ce5e67
commit 7716f20a5b
1 changed files with 13 additions and 4 deletions

View File

@ -173,11 +173,20 @@ void DIALOG_GLOBAL_DELETION::acceptPcbDelete()
if( !delDrawings || !masque_layer[layer] ) if( !delDrawings || !masque_layer[layer] )
continue; continue;
if( dwg->IsLocked() && !m_drawingFilterLocked->GetValue() ) if( layer == Edge_Cuts )
continue; {
// We currently don't differentiate between locked and unlocked board
// edges. (If we did, we'd also need to add checkboxes to filter them
// as overloading m_drawingFilter* would be confusing.)
}
else
{
if( dwg->IsLocked() && !m_drawingFilterLocked->GetValue() )
continue;
if( !dwg->IsLocked() && !m_drawingFilterUnlocked->GetValue() ) if( !dwg->IsLocked() && !m_drawingFilterUnlocked->GetValue() )
continue; continue;
}
} }
else if( type == PCB_TEXT_T ) else if( type == PCB_TEXT_T )
{ {