diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-05-04 22:24:54 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-05-04 22:24:54 +0000 |
| commit | bd1faf13e577bacb76015fc6afe76d9562c29ce5 (patch) | |
| tree | 90cfab4bf42f0148f041ccd1e101a659755a6bb6 /src/tools/dcpomatic.cc | |
| parent | aef19d980eedbb65e88060fe90ce41c89a04a7cc (diff) | |
Fix logging when loading a film.v2.14.1
Diffstat (limited to 'src/tools/dcpomatic.cc')
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index cd21d8080..3fb291fc4 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -415,7 +415,6 @@ public: film->set_name (path.filename().generic_string()); film->write_metadata (); set_film (film); - dcpomatic_log = film->log (); } void load_film (boost::filesystem::path file) @@ -463,6 +462,7 @@ public: if (_film) { _film->Change.connect (boost::bind (&DOMFrame::film_change, this, _1)); _film->Message.connect (boost::bind(&DOMFrame::film_message, this, _1)); + dcpomatic_log = _film->log (); } } |
