summaryrefslogtreecommitdiff
path: root/src/wx/dcp_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-02-28 21:24:33 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-28 21:24:33 +0100
commited7cc979a633fec0eea3eee71f611c0b7dcd1010 (patch)
tree9c88c3ac72bf2e9f6e4ffe3bdc78a55c8a5d5250 /src/wx/dcp_panel.cc
parent15fe326c723b88f779d69fe0ae737d27d69e6e6f (diff)
Add a couple of tooltips.
Diffstat (limited to 'src/wx/dcp_panel.cc')
-rw-r--r--src/wx/dcp_panel.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index 355484e5c..19f26d9d0 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -150,11 +150,13 @@ DCPPanel::DCPPanel(wxNotebook* n, shared_ptr<Film> film, FilmViewer& viewer)
_reel_type->add(_("Split by video content"));
/// TRANSLATORS: translate the word "Custom" here; do not include the "Reel|" prefix
_reel_type->add(S_("Reel|Custom"));
+ _reel_type->SetToolTip(_("How the DCP should be split into parts internally. If in doubt, choose 'Single reel'"));
_reel_length->SetRange (1, 64);
_standard->add(_("SMPTE"));
_standard->add(_("Interop"));
+ _standard->SetToolTip(_("Which standard the DCP should use. Interop is older and SMPTE is the modern standard. If in doubt, choose 'SMPTE'"));
Config::instance()->Changed.connect (boost::bind(&DCPPanel::config_changed, this, _1));