Made the "mkvmerge executable" input in the preferences dialog editable again

Final part of a fix for bug 490.
This commit is contained in:
Moritz Bunkus 2010-05-28 00:01:22 +02:00
parent f515756e58
commit 90614c7871
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2010-05-27 Moritz Bunkus <moritz@bunkus.org>
* mmg: enhancement: The "mkvmerge executable" input in the
preferences dialog is not read-only anymore. Final part of a fix
for bug 490.
* mmg: bug fix: mmg will output a warning if it is used with a
mkvmerge executable whose version differs from mmg's version. Part
of a fix for bug 490.

View File

@ -55,7 +55,7 @@ optdlg_mkvmerge_tab::optdlg_mkvmerge_tab(wxWindow *parent,
// Create the controls.
wxStaticText *st_mkvmerge = new wxStaticText(this, -1, Z("mkvmerge executable"));
tc_mkvmerge = new wxTextCtrl(this, ID_TC_MKVMERGE, m_options.mkvmerge, wxDefaultPosition, wxDefaultSize, wxTE_READONLY);
tc_mkvmerge = new wxTextCtrl(this, ID_TC_MKVMERGE, m_options.mkvmerge);
wxButton *b_browse = new wxButton(this, ID_B_BROWSEMKVMERGE, Z("Browse"));
wxStaticText *st_priority = new wxStaticText(this, -1, Z("Process priority:"));