Browse Source

Disentagle board edges from graphics in global delete.

Fixes https://gitlab.com/kicad/code/kicad/issues/7024
6.0.7
Jeff Young 5 years ago
parent
commit
7716f20a5b
  1. 19
      pcbnew/dialogs/dialog_global_deletion.cpp

19
pcbnew/dialogs/dialog_global_deletion.cpp

@ -173,11 +173,20 @@ void DIALOG_GLOBAL_DELETION::acceptPcbDelete()
if( !delDrawings || !masque_layer[layer] )
continue;
if( dwg->IsLocked() && !m_drawingFilterLocked->GetValue() )
continue;
if( !dwg->IsLocked() && !m_drawingFilterUnlocked->GetValue() )
continue;
if( layer == Edge_Cuts )
{
// 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() )
continue;
}
}
else if( type == PCB_TEXT_T )
{

Loading…
Cancel
Save