mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
ChangeLog update. Less duplicate code.
This commit is contained in:
parent
bb0c2c6ba7
commit
cb77d9eff4
@ -1,3 +1,7 @@
|
||||
2005-02-08 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mkvmerge: bug fix: Track names could not be set to be empty.
|
||||
|
||||
2005-02-06 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* Released v1.0.2.
|
||||
|
@ -1385,12 +1385,9 @@ mmg_dialog::update_command_line() {
|
||||
clargs.Add(a->file_name);
|
||||
}
|
||||
|
||||
if (global_page->tc_title->GetValue().Length() > 0) {
|
||||
if (title_was_present || (global_page->tc_title->GetValue().Length() > 0)) {
|
||||
clargs.Add(wxT("--title"));
|
||||
clargs.Add(global_page->tc_title->GetValue());
|
||||
} else if (title_was_present) {
|
||||
clargs.Add(wxT("--title"));
|
||||
clargs.Add(wxT(""));
|
||||
}
|
||||
|
||||
if (global_page->cb_split->IsChecked()) {
|
||||
|
Loading…
Reference in New Issue
Block a user