diff options
Diffstat (limited to 'src/wx/export_dialog.cc')
| -rw-r--r-- | src/wx/export_dialog.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/wx/export_dialog.cc b/src/wx/export_dialog.cc index f75150e45..3c08da1b7 100644 --- a/src/wx/export_dialog.cc +++ b/src/wx/export_dialog.cc @@ -57,6 +57,9 @@ ExportDialog::ExportDialog (wxWindow* parent) add_spacer (); _mixdown = new wxCheckBox (this, wxID_ANY, _("Mix audio down to stereo")); add (_mixdown, false); + add_spacer (); + _split_reels = new wxCheckBox (this, wxID_ANY, _("Write reels into separate files")); + add (_split_reels, false); _x264_crf_label[0] = add (_("Quality"), true); _x264_crf = new wxSlider (this, wxID_ANY, 23, 0, 51, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL | wxSL_LABELS); add (_x264_crf, false); @@ -123,6 +126,12 @@ ExportDialog::mixdown_to_stereo () const return _mixdown->GetValue (); } +bool +ExportDialog::split_reels () const +{ + return _split_reels->GetValue (); +} + int ExportDialog::x264_crf () const { |
