diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-29 22:59:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-04-29 22:59:28 +0100 |
| commit | 5d34180896619395d9a8b8532a84d5975370bf31 (patch) | |
| tree | 11f55f7f8aee92e7239ab3928c82e7efae48f3fc /src | |
| parent | 068291b7233b01573863d7fb5eda2a82883c748d (diff) | |
Fix incorrect date when using copy-as-name (#869).
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/dcp_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index ba952c38d..7ffc24f7d 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -769,7 +769,7 @@ DCPPanel::make_audio_panel () void DCPPanel::copy_isdcf_name_button_clicked () { - _film->set_name (_film->isdcf_name (false)); + _film->set_name (_film->isdcf_name (true)); _film->set_use_isdcf_name (false); } |
