Split 2009 changelog, added Marco's WXMAC search path patch
This commit is contained in:
parent
1d98f1f1d2
commit
a470a34e5b
1011
CHANGELOG.txt
1011
CHANGELOG.txt
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -499,6 +499,10 @@ void WinEDA_App::SetDefaultSearchPaths( void )
|
|||
* figure out a way to implement this without #ifdef, please do. */
|
||||
#ifdef __WXMSW__
|
||||
tmp.AddEnvList( wxT( "PROGRAMFILES" ) );
|
||||
#elif __WXMAC__
|
||||
m_searchPaths.Add( wxT("/Library/Application Support/kicad") );
|
||||
m_searchPaths.Add( wxString(wxGetenv(wxT("HOME"))) +
|
||||
wxT("/Library/Application Support/kicad") );
|
||||
#else
|
||||
tmp.AddEnvList( wxT( "PATH" ) );
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue