mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 04:33:04 +01:00
Fix UI bug in TS subtitle chooser
This commit is contained in:
parent
3925fa5c2d
commit
f0502ffc61
@ -818,4 +818,7 @@
|
||||
<word>headspace</word>
|
||||
<word>shitholes</word>
|
||||
<word>underserved</word>
|
||||
<word>creampied</word>
|
||||
<word>dovey</word>
|
||||
<word>lovey–dovey</word>
|
||||
</words>
|
@ -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>
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user