From: Carl Hetherington Date: Thu, 7 Jul 2022 20:24:02 +0000 (+0200) Subject: There's no longer ever a need to disable the mixdown-to-stereo option. X-Git-Tag: v2.16.17~17 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=98ed02021bb7cc64729e919553d937d3f28fccf9 There's no longer ever a need to disable the mixdown-to-stereo option. This used to be necessary when subtitles were exported from the same dialogue as videos. --- diff --git a/src/wx/export_video_file_dialog.cc b/src/wx/export_video_file_dialog.cc index 3cc4b133f..ec54cc408 100644 --- a/src/wx/export_video_file_dialog.cc +++ b/src/wx/export_video_file_dialog.cc @@ -173,7 +173,6 @@ ExportVideoFileDialog::format_changed () for (int i = 0; i < 2; ++i) { _x264_crf_label[i]->Enable(formats[selection] == ExportFormat::H264_AAC); } - _mixdown->Enable (selection != 2); Config::instance()->export_config().set_format(formats[selection]); }