Added a ImportSpecctraSession overload that doesn't require a PCB_EDIT_FRAME
This commit is contained in:
@@ -359,7 +359,7 @@ bool ExportSpecctraDSN( BOARD* aBoard, wxString& aFullFilename )
|
||||
{
|
||||
try
|
||||
{
|
||||
ExportBoardToSpecctraFile( aBoard, aFullFilename );
|
||||
DSN::ExportBoardToSpecctraFile( aBoard, aFullFilename );
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
@@ -399,6 +399,20 @@ bool ImportSpecctraSES( wxString& aFullFilename )
|
||||
}
|
||||
}
|
||||
|
||||
bool ImportSpecctraSES( BOARD* aBoard, wxString& aFullFilename )
|
||||
{
|
||||
try
|
||||
{
|
||||
DSN::ImportSpecctraSession( aBoard, aFullFilename );
|
||||
}
|
||||
catch( ... )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool ExportFootprintsToLibrary( bool aStoreInNewLib, const wxString& aLibName, wxString* aLibPath )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user