BOM Export: default to ${PROJECTNAME}.csv for convenience

Fixes: https://gitlab.com/kicad/code/kicad/-/issues/17049
This commit is contained in:
Mike Williams 2024-04-11 15:46:50 -04:00
parent 9c058503d9
commit cbef6d1cbf
1 changed files with 1 additions and 1 deletions

View File

@ -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() ) );