Keep default export name even if the user changes the format (#1584).
authorCarl Hetherington <cth@carlh.net>
Thu, 31 Oct 2019 21:21:02 +0000 (22:21 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 31 Oct 2019 21:21:02 +0000 (22:21 +0100)
src/wx/export_dialog.cc
src/wx/export_dialog.h

index b23583d44befba1bcd10a2d2d47c02fb5f72dd72..65ce14092683b0a1496cbde9d384fdc9dbbf2d69 100644 (file)
@@ -56,6 +56,7 @@ ExportFormat formats[] = {
 
 ExportDialog::ExportDialog (wxWindow* parent, string name)
        : TableDialog (parent, _("Export film"), 2, 1, true)
+       , _initial_name (name)
 {
        add (_("Format"), true);
        _format = new wxChoice (this, wxID_ANY);
@@ -78,7 +79,7 @@ ExportDialog::ExportDialog (wxWindow* parent, string name)
 
        add (_("Output file"), true);
        _file = new FilePickerCtrl (this, _("Select output file"), format_filters[0], false);
-       _file->SetPath (name);
+       _file->SetPath (_initial_name);
        add (_file);
 
        for (int i = 0; i < FORMATS; ++i) {
@@ -105,7 +106,7 @@ ExportDialog::format_changed ()
 {
        DCPOMATIC_ASSERT (_format->GetSelection() >= 0 && _format->GetSelection() < FORMATS);
        _file->SetWildcard (format_filters[_format->GetSelection()]);
-       _file->SetPath ("");
+       _file->SetPath (_initial_name);
        _x264_crf->Enable (_format->GetSelection() == 1);
        for (int i = 0; i < 2; ++i) {
                _x264_crf_label[i]->Enable (_format->GetSelection() == 1);
index 3314e22da16773fc828126f57a6a212385123d76..f1e893b5329b887238cc89b028c30ca76f660195 100644 (file)
@@ -40,6 +40,7 @@ private:
        void format_changed ();
        void file_changed ();
 
+       std::string _initial_name;
        wxChoice* _format;
        wxCheckBox* _mixdown;
        wxCheckBox* _split_reels;