Add back Mac special-case to GetStockPlugins3DPath

3D plugins are not like other plugins

Fixes https://gitlab.com/kicad/code/kicad/-/issues/7750
This commit is contained in:
Jon Evans 2021-03-29 17:07:37 -04:00
parent 38c849bde7
commit 7a4f5be37e
1 changed files with 2 additions and 0 deletions

View File

@ -197,6 +197,8 @@ wxString PATHS::GetStockPlugins3DPath()
fn.Assign( tfname, "" );
fn.AppendDir( wxT( "kicad" ) );
fn.AppendDir( wxT( "plugins" ) );
#elif defined( __WXMAC__ )
fn.Assign( wxStandardPaths::Get().GetPluginsDir(), wxEmptyString );
#else
fn.Assign( PATHS::GetStockPluginsPath() );
#endif