gerbview command line support

This commit is contained in:
dickelbeck 2008-02-23 01:26:21 +00:00
parent ad55799485
commit 1e4659bb4e
3 changed files with 11 additions and 7 deletions

View File

@ -143,6 +143,7 @@ int WinEDA_GerberFrame::LoadOneGerberFile( const wxString& FullFileName,
GetScreen()->m_FileName = filename;
if( path != wxEmptyString )
wxSetWorkingDirectory( path );
ChangeFileNameExt( filename, g_PenFilenameExt );

View File

@ -70,6 +70,7 @@ bool WinEDA_App::OnInit()
wxString path = wxPathOnly( fileName );
if( path != wxEmptyString )
wxSetWorkingDirectory( path );
Read_Config();

View File

@ -149,7 +149,9 @@ bool WinEDA_GerberFrame::Read_GERBER_File( wxDC* DC,
gerber_layer->m_FileName = GERBER_FullFileName;
wxSetWorkingDirectory( wxPathOnly( GERBER_FullFileName ) );
wxString path = wxPathOnly( GERBER_FullFileName );
if( path != wxEmptyString )
wxSetWorkingDirectory( path );
wxBusyCursor show_wait;
setlocale( LC_NUMERIC, "C" );