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:
parent
f18fb9fe64
commit
8c367cce8d
|
@ -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
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
@ -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" ) );
|
||||
|
|
Loading…
Reference in New Issue