Separate ki_fp_filters by spaces

Multiple footprint filters will no be separated by spaces for easier
parsing as an array
This commit is contained in:
Seth Hillbrand 2020-10-06 06:34:38 -07:00
parent f18fb9fe64
commit 8c367cce8d
2 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200820
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200827 // Remove host tag
#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200908 // Add include in BOM and on board support.
//#define SEXPR_SYMBOL_LIB_FILE_VERSION 20200908 // Add include in BOM and on board support.
#define SEXPR_SYMBOL_LIB_FILE_VERSION 20201005 // Separate ki_fp_filters by spaces
/**

View File

@ -1624,7 +1624,7 @@ void SCH_SEXPR_PLUGIN_CACHE::saveDcmInfoAsFields( LIB_PART* aSymbol, OUTPUTFORMA
if( tmp.IsEmpty() )
tmp = filter;
else
tmp += "\n" + filter;
tmp += " " + filter;
}
LIB_FIELD description( id, wxString( "ki_fp_filters" ) );