mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
Newer wxWidgets use the first file extension if the user enters a file name without an extension. mkv should be the one used in this case.
This commit is contained in:
parent
77f5d2e0f1
commit
811ac73388
@ -812,8 +812,14 @@ void
|
|||||||
mmg_dialog::on_browse_output(wxCommandEvent &evt) {
|
mmg_dialog::on_browse_output(wxCommandEvent &evt) {
|
||||||
wxFileDialog dlg(NULL, wxT("Choose an output file"), last_open_dir,
|
wxFileDialog dlg(NULL, wxT("Choose an output file"), last_open_dir,
|
||||||
tc_output->GetValue().AfterLast(PSEP),
|
tc_output->GetValue().AfterLast(PSEP),
|
||||||
|
#if wxCHECK_VERSION(2, 5, 0)
|
||||||
|
wxT("Matroska A/V files (*.mka;*.mkv)|*.mkv;*.mka|"
|
||||||
|
ALLFILES),
|
||||||
|
#else
|
||||||
wxT("Matroska A/V files (*.mka;*.mkv)|*.mka;*.mkv|"
|
wxT("Matroska A/V files (*.mka;*.mkv)|*.mka;*.mkv|"
|
||||||
ALLFILES), wxSAVE | wxOVERWRITE_PROMPT);
|
ALLFILES),
|
||||||
|
#endif
|
||||||
|
wxSAVE | wxOVERWRITE_PROMPT);
|
||||||
if(dlg.ShowModal() == wxID_OK) {
|
if(dlg.ShowModal() == wxID_OK) {
|
||||||
last_open_dir = dlg.GetDirectory();
|
last_open_dir = dlg.GetDirectory();
|
||||||
tc_output->SetValue(dlg.GetPath());
|
tc_output->SetValue(dlg.GetPath());
|
||||||
|
Loading…
Reference in New Issue
Block a user