All the preferences, all the time.

Fixes https://gitlab.com/kicad/code/kicad/issues/7877

Fixes https://gitlab.com/kicad/code/kicad/issues/5153
This commit is contained in:
Jeff Young
2021-12-24 13:08:44 +00:00
parent f1410f0240
commit d28714167c
138 changed files with 2155 additions and 2488 deletions
+6 -1
View File
@@ -112,7 +112,12 @@ static void pcbnewRunPythonMethodWithReturnedString( const char* aMethodName, wx
Py_DECREF( localDict );
if( PyErr_Occurred() )
wxLogMessage( PyErrStringWithTraceback() );
{
if( strcmp( aMethodName, "pcbnew.GetWizardsBackTrace" ) == 0 )
aNames = PyErrStringWithTraceback();
else
wxLogMessage( PyErrStringWithTraceback() );
}
}