Make call to DXF importer not possible if a footprint does not exist, also in GAL mode.
This commit is contained in:
parent
8193a898f3
commit
00cffb080e
|
@ -430,6 +430,9 @@ int DRAWING_TOOL::DrawKeepout( const TOOL_EVENT& aEvent )
|
|||
|
||||
int DRAWING_TOOL::PlaceDXF( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
if( m_editModules && !m_board->m_Modules )
|
||||
return 0;
|
||||
|
||||
DIALOG_DXF_IMPORT dlg( m_frame );
|
||||
int dlgResult = dlg.ShowModal();
|
||||
|
||||
|
|
Loading…
Reference in New Issue