summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-03-12 18:55:46 +0000
committerCarl Hetherington <cth@carlh.net>2016-03-12 18:55:46 +0000
commit8615f1dd96a75869ab1e67236739473a39dfbd0b (patch)
treeed46fc8b1f9a5551bfc6d969f68799d29cdbbb25
parent3e8da02da4697ba56df530aa9d019f66c58e9846 (diff)
Add 2.35:1 ratio.
-rw-r--r--ChangeLog2
-rw-r--r--src/lib/ratio.cc1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c949ad4e..b33b4ae07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2016-03-12 Carl Hetherington <cth@carlh.net>
+ * Add 2.35:1 ratio.
+
* Fix assertion failure on opening content properties (#816).
2016-03-10 Carl Hetherington <cth@carlh.net>
diff --git a/src/lib/ratio.cc b/src/lib/ratio.cc
index a6ebad141..ea6d122bf 100644
--- a/src/lib/ratio.cc
+++ b/src/lib/ratio.cc
@@ -38,6 +38,7 @@ Ratio::setup_ratios ()
_ratios.push_back (new Ratio (float(1800) / 1080, "166", _("1.66"), "166"));
_ratios.push_back (new Ratio (float(1920) / 1080, "178", _("16:9"), "178"));
_ratios.push_back (new Ratio (float(1998) / 1080, "185", _("Flat"), "F"));
+ _ratios.push_back (new Ratio (float(2048) / 872, "235", _("2.35"), "S"));
_ratios.push_back (new Ratio (float(2048) / 858, "239", _("Scope"), "S"));
_ratios.push_back (new Ratio (float(2048) / 1080, "full-frame", _("Full frame"), "C"));
}