diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-27 00:29:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-27 00:30:25 +0100 |
| commit | 77c8ef5396e971034f27202dc12d00ab9a3f441f (patch) | |
| tree | 57b01d89691763de7040add5440dba509889ecac /src/lib | |
| parent | 87ed52420c746cd4f7f3e15ab7e4dcb2ecfede28 (diff) | |
Match KDM filename format defaults.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/config.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc index 86bc343da..3756d3e33 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -550,8 +550,8 @@ try _show_hints_before_make_dcp = f.optional_bool_child("ShowHintsBeforeMakeDCP").get_value_or(true); _confirm_kdm_email = f.optional_bool_child("ConfirmKDMEmail").get_value_or(true); _kdm_container_name_format = dcp::NameFormat(f.optional_string_child("KDMContainerNameFormat").get_value_or("KDM %f %c")); - _kdm_filename_format = dcp::NameFormat(f.optional_string_child("KDMFilenameFormat").get_value_or("KDM %f %c %s")); _dkdm_filename_format = dcp::NameFormat(f.optional_string_child("DKDMFilenameFormat").get_value_or("DKDM %f %c %s")); + _kdm_filename_format = dcp::NameFormat(f.optional_string_child("KDMFilenameFormat").get_value_or("KDM_%f_%c_%s")); _dcp_metadata_filename_format = dcp::NameFormat(f.optional_string_child("DCPMetadataFilenameFormat").get_value_or("%t")); _dcp_asset_filename_format = dcp::NameFormat(f.optional_string_child("DCPAssetFilenameFormat").get_value_or("%t")); _jump_to_selected = f.optional_bool_child("JumpToSelected").get_value_or(true); |
