BOM Export: default to ${PROJECTNAME}.csv for convenience
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/17049
This commit is contained in:
parent
9c058503d9
commit
cbef6d1cbf
|
@ -197,7 +197,7 @@ SCHEMATIC_SETTINGS::SCHEMATIC_SETTINGS( JSON_SETTINGS* aParent, const std::strin
|
|||
}, {} ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<wxString>( "bom_export_filename",
|
||||
&m_BomExportFileName, "" ) );
|
||||
&m_BomExportFileName, "${PROJECTNAME}.csv" ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<BOM_PRESET>( "bom_settings",
|
||||
&m_BomSettings, BOM_PRESET::GroupedByValue() ) );
|
||||
|
|
Loading…
Reference in New Issue