summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/wx/dcp_panel.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b6a276372..8b6bb9f39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}