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 | |
| parent | 068291b7233b01573863d7fb5eda2a82883c748d (diff) | |
Fix incorrect date when using copy-as-name (#869).
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | src/wx/dcp_panel.cc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2016-04-29 Carl Hetherington <cth@carlh.net> + + * Fix incorrect date when using "copy as name" (#869). + 2016-04-27 Carl Hetherington <cth@carlh.net> * Add free-text notes field to cinemas and screens. 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); } |
