summaryrefslogtreecommitdiff
path: root/src/wx/export_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-08-25 21:02:00 +0200
committerCarl Hetherington <cth@carlh.net>2020-08-25 21:02:00 +0200
commit451ab9374cc32483489cdde27a9382b546cdecf5 (patch)
treefa55bd207248cbfeb12af39c93c8107fd85a1614 /src/wx/export_dialog.cc
parent5d3c9573914a61db10b24ce7e0cef00902c2912c (diff)
Move subtitle export to its own dialogue.
Diffstat (limited to 'src/wx/export_dialog.cc')
-rw-r--r--src/wx/export_dialog.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/wx/export_dialog.cc b/src/wx/export_dialog.cc
index ca723ddeb..3553f3c7e 100644
--- a/src/wx/export_dialog.cc
+++ b/src/wx/export_dialog.cc
@@ -31,30 +31,26 @@ DCPOMATIC_ENABLE_WARNINGS
using std::string;
using boost::bind;
-#define FORMATS 3
+#define FORMATS 2
wxString format_names[] = {
_("ProRes"),
_("MP4 / H.264"),
- _("DCP subtitles")
};
wxString format_filters[] = {
_("MOV files (*.mov)|*.mov"),
_("MP4 files (*.mp4)|*.mp4"),
- _("Subtitle files (*.xml)|*.xml"),
};
wxString format_extensions[] = {
"mov",
"mp4",
- "xml",
};
ExportFormat formats[] = {
EXPORT_FORMAT_PRORES,
EXPORT_FORMAT_H264_AAC,
- EXPORT_FORMAT_SUBTITLES_DCP
};
ExportDialog::ExportDialog (wxWindow* parent, string name)