Fix incorrect hint.
authorCarl Hetherington <cth@carlh.net>
Fri, 25 Sep 2015 19:44:47 +0000 (20:44 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 25 Sep 2015 19:44:47 +0000 (20:44 +0100)
ChangeLog
src/wx/hints_dialog.cc

index b8e85cc87a5636114bee6af065f21f5efbbe2178..2680c1793f68079efa20a6438beb83e59aa8b3ad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2015-09-25  Carl Hetherington  <cth@carlh.net>
 
+       * Fix incorrect hint about 3D content in a 2D DCP.
+
        * Detect and convert from non-UTF-8
        subtitle encodings.
 
index 66a53c5594a9cb14f61c40b567c7313accc35308..e15263670059eb72ab496d8ead51e0d16dd954ff 100644 (file)
@@ -166,7 +166,7 @@ HintsDialog::film_changed ()
                }
        }
 
-       if (three_d > 0) {
+       if (three_d > 0 && !film->three_d()) {
                hint = true;
                _text->WriteText (_("You are using 3D content but your DCP is set to 2D.  Set the DCP to 3D if you want to play it back on a 3D system (e.g. Real-D, MasterImage etc.)"));
                _text->Newline ();