From: Carl Hetherington Date: Sun, 17 May 2015 18:30:31 +0000 (+0100) Subject: 37423292ff0ff0210a2eeb4b2eea6740dcfa0a64 from master; fix DCP name update on changing... X-Git-Tag: v2.0.48~89^2~6 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=e4fc4dcbd68e80dacfda96d95897c33489a89849 37423292ff0ff0210a2eeb4b2eea6740dcfa0a64 from master; fix DCP name update on changing DCP standard. --- diff --git a/ChangeLog b/ChangeLog index 0da299a55..e2d734168 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-05-17 Carl Hetherington + + * Fix Update DCP name on changing DCP standard (#570). + 2015-05-14 Carl Hetherington * Version 2.0.47 released. diff --git a/TO_PORT b/TO_PORT index 2478d3670..e69de29bb 100644 --- a/TO_PORT +++ b/TO_PORT @@ -1 +0,0 @@ -2bbe8112dd12f770844ce367751faf348d5414b0 diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc index 88ecf88bd..ccfe5711c 100644 --- a/src/wx/dcp_panel.cc +++ b/src/wx/dcp_panel.cc @@ -344,6 +344,7 @@ DCPPanel::film_changed (int p) break; case Film::INTEROP: checked_set (_standard, _film->interop() ? 1 : 0); + setup_dcp_name (); break; default: break;