Only render source if needed

This commit is contained in:
Nikolaj Olsson 2021-03-26 21:00:51 +01:00
parent 38379f3513
commit f47f00e443

View File

@ -3332,7 +3332,10 @@ namespace Nikse.SubtitleEdit.Forms
}
// Seungki end
textBoxSource.Text = _subtitle.ToText(format);
if (InSourceView || _loading && Configuration.Settings.General.StartInSourceView)
{
textBoxSource.Text = _subtitle.ToText(format);
}
SubtitleListview1.Fill(_subtitle, _subtitleOriginal);
if (SubtitleListview1.Items.Count > 0)
{