Fix incorrect date when using copy-as-name (#869).
authorCarl Hetherington <cth@carlh.net>
Fri, 29 Apr 2016 21:59:28 +0000 (22:59 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 29 Apr 2016 21:59:28 +0000 (22:59 +0100)
ChangeLog
src/wx/dcp_panel.cc

index b6a27637273f1f9b60064aa1ebe0571bb85fe765..8b6bb9f3972dc9c8199330239c9e59b4d7ef58d5 100644 (file)
--- 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.
index ba952c38d6dda022f09953a0c8f913ee0ed7b38c..7ffc24f7dd0263863f1b02b4173a6a174c955f30 100644 (file)
@@ -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);
 }