summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-25 23:54:33 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-25 23:54:33 +0200
commitdce22d59d3e8302eacf97bf6421e3e35daff57bf (patch)
treecbf3b3d15a05129c7c32fa0ff1e2c5fe39dd31ef /src
parent3e4f6d59b46e3c09c9d0aba907ff0633bf0bc2e5 (diff)
Don't offer full-frame containers unless 'allow any container' is enabled.
Diffstat (limited to 'src')
-rw-r--r--src/lib/config.cc2
-rw-r--r--src/lib/ratio.cc1
-rw-r--r--src/wx/full_config_dialog.cc2
3 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index 18955a896..a138cc879 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -809,7 +809,7 @@ Config::write_config () const
root->add_child("MaximumJ2KBandwidth")->add_child_text (raw_convert<string> (_maximum_j2k_bandwidth));
/* [XML] AllowAnyDCPFrameRate 1 to allow users to specify any frame rate when creating DCPs, 0 to limit the GUI to standard rates. */
root->add_child("AllowAnyDCPFrameRate")->add_child_text (_allow_any_dcp_frame_rate ? "1" : "0");
- /* [XML] AllowAnyContainer 1 to allow users to user any container ratio for their DCP, 0 to limit the GUI to standard containers. */
+ /* [XML] AllowAnyContainer 1 to allow users to user any container ratio for their DCP, 0 to limit the GUI to DCI Flat/Scope */
root->add_child("AllowAnyContainer")->add_child_text (_allow_any_container ? "1" : "0");
/* [XML] ShowExperimentalAudioProcessors 1 to offer users the (experimental) audio upmixer processors, 0 to hide them */
root->add_child("ShowExperimentalAudioProcessors")->add_child_text (_show_experimental_audio_processors ? "1" : "0");
diff --git a/src/lib/ratio.cc b/src/lib/ratio.cc
index 8a86ced59..93ad5755d 100644
--- a/src/lib/ratio.cc
+++ b/src/lib/ratio.cc
@@ -110,7 +110,6 @@ Ratio::containers ()
vector<Ratio const *> r;
r.push_back (Ratio::from_id ("185"));
r.push_back (Ratio::from_id ("239"));
- r.push_back (Ratio::from_id ("190"));
return r;
}
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc
index fff0d2035..a371690bd 100644
--- a/src/wx/full_config_dialog.cc
+++ b/src/wx/full_config_dialog.cc
@@ -1245,7 +1245,7 @@ private:
table->Add (_allow_any_dcp_frame_rate, 1, wxEXPAND | wxALL);
table->AddSpacer (0);
- _allow_any_container = new CheckBox (_panel, _("Allow non-standard container ratios"));
+ _allow_any_container = new CheckBox (_panel, _("Allow full-frame and non-standard container ratios"));
table->Add (_allow_any_container, 1, wxEXPAND | wxALL);
table->AddSpacer (0);