summaryrefslogtreecommitdiff
path: root/src/lib/ratio.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-06-29 11:43:09 +0100
committerCarl Hetherington <cth@carlh.net>2017-06-29 11:43:09 +0100
commit34f26bd9a6b96582809e3991fa4d7fc03fe133f1 (patch)
treeb8e144e828230284126a643d707e50a4b6300291 /src/lib/ratio.cc
parent56209810c3a8510b5c0ad74dfc8ac5f5a69ea1ef (diff)
Tweak ratio name.
Diffstat (limited to 'src/lib/ratio.cc')
-rw-r--r--src/lib/ratio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ratio.cc b/src/lib/ratio.cc
index 60384892d..40be9558f 100644
--- a/src/lib/ratio.cc
+++ b/src/lib/ratio.cc
@@ -41,7 +41,7 @@ Ratio::setup_ratios ()
_ratios.push_back (new Ratio (float(1800) / 1080, "166", _("1.66"), optional<string>(), "166"));
_ratios.push_back (new Ratio (float(1920) / 1080, "178", _("1.78 (16:9 or HD)"), optional<string>(), "178"));
_ratios.push_back (new Ratio (float(1998) / 1080, "185", _("1.85 (Flat)"), string(_("DCI Flat")), "F"));
- _ratios.push_back (new Ratio (float(2048) / 872, "235", _("2.35"), optional<string>(), "S"));
+ _ratios.push_back (new Ratio (float(2048) / 872, "235", _("2.35 (35mm Scope)"), optional<string>(), "S"));
_ratios.push_back (new Ratio (float(2048) / 858, "239", _("2.39 (Scope)"), string(_("DCI Scope")), "S"));
_ratios.push_back (new Ratio (float(2048) / 1080, "full-frame", _("1.90 (Full frame)"), string(_("Full frame")), "C"));
}