summaryrefslogtreecommitdiff
path: root/src/lib/writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-06-28 16:17:39 +0100
committerCarl Hetherington <cth@carlh.net>2017-06-29 11:26:56 +0100
commit29377b18a8cef724c8e2de2316a66ceae89a2e9a (patch)
tree10bf8a39b26282274382e1d74aefa1603f10711e /src/lib/writer.cc
parentcb845fc94ce2015138ddecb6c5a94e722361642a (diff)
Offer only flat/scope/full-frame as container choices and differentiate
the names from the UI for content ratios.
Diffstat (limited to 'src/lib/writer.cc')
-rw-r--r--src/lib/writer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index 5e8f8fc9f..b5123ad74 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -554,7 +554,7 @@ Writer::write_cover_sheet ()
string text = Config::instance()->cover_sheet ();
boost::algorithm::replace_all (text, "$CPL_NAME", _film->name());
boost::algorithm::replace_all (text, "$TYPE", _film->dcp_content_type()->pretty_name());
- boost::algorithm::replace_all (text, "$CONTAINER", _film->container()->nickname());
+ boost::algorithm::replace_all (text, "$CONTAINER", _film->container()->container_nickname());
boost::algorithm::replace_all (text, "$AUDIO_LANGUAGE", _film->isdcf_metadata().audio_language);
boost::algorithm::replace_all (text, "$SUBTITLE_LANGUAGE", _film->isdcf_metadata().subtitle_language);