mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Fix wrong "Time code status" in EBU properties - thx doc :)
This commit is contained in:
parent
579ed635de
commit
d68eda5454
@ -204,9 +204,9 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
textBoxSubtitleListReferenceCode.Text = header.SubtitleListReferenceCode.TrimEnd();
|
||||
textBoxCountryOfOrigin.Text = header.CountryOfOrigin;
|
||||
|
||||
comboBoxTimeCodeStatus.SelectedIndex = 0;
|
||||
if (header.TimeCodeStatus == "1")
|
||||
comboBoxTimeCodeStatus.SelectedIndex = 1;
|
||||
comboBoxTimeCodeStatus.SelectedIndex = 1;
|
||||
if (header.TimeCodeStatus == "0")
|
||||
comboBoxTimeCodeStatus.SelectedIndex = 1; // 1 == intended for use, 0 == not intended for use
|
||||
try
|
||||
{
|
||||
// HHMMSSFF
|
||||
|
Loading…
Reference in New Issue
Block a user