Allow normal close action of dialog

Fixes https://gitlab.com/kicad/code/kicad/-/issues/19596
This commit is contained in:
Jeff Young 2025-01-11 15:17:10 +00:00
parent d83a2a90cb
commit edd59c6ead

View File

@ -302,7 +302,7 @@ void DIALOG_GEN_FOOTPRINT_POSITION::onGenerate( wxCommandEvent& event )
m_job->m_negateBottomX = m_negateXcb->GetValue(); m_job->m_negateBottomX = m_negateXcb->GetValue();
m_job->m_excludeDNP = m_excludeDNP->GetValue(); m_job->m_excludeDNP = m_excludeDNP->GetValue();
Close(); event.Skip(); // Allow normal close action
} }
} }