summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-25 20:44:47 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-25 20:44:47 +0100
commit4c8353fcfa5e116ed784e6999dd79d2b94c7305e (patch)
tree026fb7cd77379b643eefeeace36bd90d035a08ec
parentac2cfae5356809bea66ff6a614f96193f6d86da2 (diff)
Fix incorrect hint.
-rw-r--r--ChangeLog2
-rw-r--r--src/wx/hints_dialog.cc2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b8e85cc87..2680c1793 100644
--- 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.
diff --git a/src/wx/hints_dialog.cc b/src/wx/hints_dialog.cc
index 66a53c559..e15263670 100644
--- a/src/wx/hints_dialog.cc
+++ b/src/wx/hints_dialog.cc
@@ -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 ();