diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-09-04 23:17:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-09-04 23:17:16 +0200 |
| commit | 9c3f823911f9e40f06701423289d3d2ac096396c (patch) | |
| tree | b6b6f90380f455e9b23d3383c7afcaffb71b4855 /src/lib/fcpxml_content.cc | |
| parent | 323146ee516476d76de5b56fdbc08747bf832825 (diff) | |
Fix missing load of FCPXML length.
Diffstat (limited to 'src/lib/fcpxml_content.cc')
| -rw-r--r-- | src/lib/fcpxml_content.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/fcpxml_content.cc b/src/lib/fcpxml_content.cc index e72ce2d7d..28345f85d 100644 --- a/src/lib/fcpxml_content.cc +++ b/src/lib/fcpxml_content.cc @@ -45,8 +45,9 @@ FCPXMLContent::FCPXMLContent(cxml::ConstNodePtr node, optional<boost::filesystem : Content(node, film_directory) { text = TextContent::from_xml(this, node, version, notes); -} + _length = dcpomatic::ContentTime(node->number_child<dcpomatic::ContentTime::Type>("Length")); +} void |
