From: Carl Hetherington Date: Mon, 5 Apr 2021 21:03:29 +0000 (+0200) Subject: Raise the unusual container hint on anything bit Flat/Scope (#1951). X-Git-Tag: v2.15.139~16 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=294f9ca3761a6b4ab645269e7e4f302cdd3a06a0 Raise the unusual container hint on anything bit Flat/Scope (#1951). --- diff --git a/src/lib/hints.cc b/src/lib/hints.cc index 21d771634..5ad0ba4bd 100644 --- a/src/lib/hints.cc +++ b/src/lib/hints.cc @@ -158,7 +158,7 @@ void Hints::check_unusual_container () { auto const film_container = film()->container()->id(); - if (film_container != "185" && film_container != "239" && film_container != "190") { + if (film_container != "185" && film_container != "239") { hint (_("Your DCP uses an unusual container ratio. This may cause problems on some projectors. If possible, use Flat or Scope for the DCP container ratio")); } }