Update the 'tags' text box on track selection change.

Fix for bug 453.
This commit is contained in:
Moritz Bunkus 2009-12-29 20:58:11 +01:00
parent f2dfddb8d0
commit e5925ebb00
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2009-12-29 Moritz Bunkus <moritz@bunkus.org>
* mmg: bug fix: The "tags" input box on the "general track
options" tab was not updated when a track was selected. Fix for
bug 453.
2009-12-28 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge, mmg: new feature: If a file is added to mkvmerge whose

View File

@ -897,6 +897,7 @@ tab_input::on_track_selected(wxCommandEvent &evt) {
ti_general->cob_default->SetSelection(t->default_track);
ti_general->cob_forced->SetSelection(t->forced_track ? 1 : 0);
ti_general->cob_language->SetValue(lang);
ti_general->tc_tags->SetValue(t->tags);
ti_general->tc_timecodes->SetValue(t->timecodes);
ti_general->tc_track_name->SetFocus();
ti_general->tc_track_name->SetValue(t->track_name);