summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/format.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/format.cc b/src/lib/format.cc
index 3ee11a132..faadcd797 100644
--- a/src/lib/format.cc
+++ b/src/lib/format.cc
@@ -230,7 +230,8 @@ VariableFormat::ratio_as_integer (shared_ptr<const Film> f) const
float
VariableFormat::ratio_as_float (shared_ptr<const Film> f) const
{
- return float (f->size().width) / f->size().height;
+ libdcp::Size const c = f->cropped_size (f->size ());
+ return float (c.width) / c.height;
}
/** @return A name to be presented to the user */