summaryrefslogtreecommitdiff
path: root/src/lib/film.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-09 22:46:59 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-29 10:35:55 +0200
commit8564032fd9e4831c9cb2b95cbe05b3616b40a641 (patch)
tree25d8e4af00fd7428fa7943305681818b083921e6 /src/lib/film.cc
parent0e1a20f2717c9e14d2b6675260e2229dfb145ffe (diff)
Get chain, facility, studio and distributor from template.
Diffstat (limited to 'src/lib/film.cc')
-rw-r--r--src/lib/film.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 32c236d36..4ffbd8c26 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -1985,6 +1985,10 @@ Film::use_template(optional<string> name)
_audio_processor = _template_film->_audio_processor;
_reel_type = _template_film->_reel_type;
_reel_length = _template_film->_reel_length;
+ _chain = _template_film->_chain;
+ _distributor = _template_film->_distributor;
+ _facility = _template_film->_facility;
+ _studio = _template_film->_studio;
}
pair<double, double>