Fix UI bug in TS subtitle chooser

This commit is contained in:
niksedk 2023-08-02 06:05:06 +02:00
parent 3925fa5c2d
commit f0502ffc61
3 changed files with 7 additions and 0 deletions

View File

@ -818,4 +818,7 @@
<word>headspace</word>
<word>shitholes</word>
<word>underserved</word>
<word>creampied</word>
<word>dovey</word>
<word>loveydovey</word>
</words>

View File

@ -4865,6 +4865,7 @@ This file is case sensitive.
<name>Sayaka</name>
<name>Sayid</name>
<name>Sayyid</name>
<name>Sayuri</name>
<name>Scarlet</name>
<name>Scarlett</name>
<name>Scavo</name>

View File

@ -133,8 +133,10 @@ namespace Nikse.SubtitleEdit.Forms
var item = (StreamTrackItem)listBoxTracks.SelectedItem;
if (item.IsTeletext)
{
listBoxSubtitles.Visible = false;
textBoxTeletext.Visible = true;
textBoxTeletext.Text = item.Srt;
textBoxTeletext.BringToFront();
IsTeletext = true;
Srt = item.Srt;
return;
@ -158,6 +160,7 @@ namespace Nikse.SubtitleEdit.Forms
{
listBoxSubtitles.SelectedIndex = 0;
}
listBoxSubtitles.Visible = true;
}
private void listBoxSubtitles_SelectedIndexChanged(object sender, EventArgs e)